ClickHouse/src/Interpreters/InterpreterCheckQuery.h

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

26 lines
416 B
C++
Raw Normal View History

2014-08-05 10:52:06 +00:00
#pragma once
#include <Core/Block.h>
#include <Interpreters/IInterpreter.h>
#include <Parsers/IAST_fwd.h>
2014-08-05 10:52:06 +00:00
namespace DB
{
class Cluster;
2017-05-23 18:01:50 +00:00
class InterpreterCheckQuery : public IInterpreter, WithContext
2014-08-05 10:52:06 +00:00
{
public:
InterpreterCheckQuery(const ASTPtr & query_ptr_, ContextPtr context_);
2015-06-18 02:11:05 +00:00
BlockIO execute() override;
2014-08-05 10:52:06 +00:00
private:
ASTPtr query_ptr;
2023-10-24 12:50:24 +00:00
2024-01-23 17:04:50 +00:00
LoggerPtr log = getLogger("InterpreterCheckQuery");
2014-08-05 10:52:06 +00:00
};
}