ClickHouse/src/Interpreters/IInterpreterUnionOrSelectQuery.cpp

13 lines
266 B
C++
Raw Normal View History

2020-12-14 03:30:39 +00:00
#include <Interpreters/IInterpreterUnionOrSelectQuery.h>
#include <Interpreters/QueryLog.h>
namespace DB
{
void IInterpreterUnionOrSelectQuery::extendQueryLogElemImpl(QueryLogElement & elem, const ASTPtr &, ContextPtr) const
2020-12-14 03:30:39 +00:00
{
elem.query_kind = "Select";
}
}