ClickHouse/src/Interpreters/IInterpreterUnionOrSelectQuery.cpp
2020-12-18 14:13:59 +08:00

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";
}
}