ClickHouse/src/Interpreters/InterpreterDescribeQuery.h

29 lines
537 B
C++
Raw Normal View History

#pragma once
#include <Interpreters/IInterpreter.h>
2019-03-11 14:01:45 +00:00
#include <Parsers/IAST_fwd.h>
namespace DB
{
2017-05-23 18:01:50 +00:00
/** Return names, types and other information about columns in specified table.
*/
class InterpreterDescribeQuery : public IInterpreter, WithContext
{
public:
InterpreterDescribeQuery(const ASTPtr & query_ptr_, ContextPtr context_) : WithContext(context_), query_ptr(query_ptr_) {}
BlockIO execute() override;
static Block getSampleBlock();
private:
ASTPtr query_ptr;
BlockInputStreamPtr executeImpl();
};
}