ClickHouse/dbms/src/Interpreters/InterpreterDescribeQuery.h
2018-02-15 21:54:12 +03:00

35 lines
599 B
C++

#pragma once
#include <Interpreters/IInterpreter.h>
namespace DB
{
class Context;
class IAST;
using ASTPtr = std::shared_ptr<IAST>;
/** Return names, types and other information about columns in specified table.
*/
class InterpreterDescribeQuery : public IInterpreter
{
public:
InterpreterDescribeQuery(const ASTPtr & query_ptr_, const Context & context_)
: query_ptr(query_ptr_), context(context_) {}
BlockIO execute() override;
static Block getSampleBlock();
private:
ASTPtr query_ptr;
const Context & context;
BlockInputStreamPtr executeImpl();
};
}