mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-12-04 21:42:39 +00:00
13 lines
271 B
C++
13 lines
271 B
C++
|
#include <Interpreters/IInterpreterUnionOrSelectQuery.h>
|
||
|
#include <Interpreters/QueryLog.h>
|
||
|
|
||
|
namespace DB
|
||
|
{
|
||
|
|
||
|
void IInterpreterUnionOrSelectQuery::extendQueryLogElemImpl(QueryLogElement & elem, const ASTPtr &, const Context &) const
|
||
|
{
|
||
|
elem.query_kind = "Select";
|
||
|
}
|
||
|
|
||
|
}
|