ClickHouse/dbms/src/Interpreters/InterpreterShowCreateQuery.h

35 lines
637 B
C++
Raw Normal View History

#pragma once
#include <Interpreters/IInterpreter.h>
namespace DB
{
2017-05-23 18:24:43 +00:00
class Context;
class IAST;
using ASTPtr = std::shared_ptr<IAST>;
2017-05-23 18:24:43 +00:00
/** Return single row with single column "statement" of type String with text of query to CREATE specified table.
*/
2015-06-18 02:11:05 +00:00
class InterpreterShowCreateQuery : public IInterpreter
{
public:
2017-05-23 18:24:43 +00:00
InterpreterShowCreateQuery(const ASTPtr & query_ptr_, const Context & context_)
: query_ptr(query_ptr_), context(context_) {}
BlockIO execute() override;
static Block getSampleBlock();
private:
ASTPtr query_ptr;
2017-05-23 18:24:43 +00:00
const Context & context;
BlockInputStreamPtr executeImpl();
};
}