ClickHouse/src/Interpreters/InterpreterDescribeQuery.h

34 lines
579 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
class Context;
2017-05-23 18:01:50 +00:00
/** Return names, types and other information about columns in specified table.
*/
2015-06-18 02:11:05 +00:00
class InterpreterDescribeQuery : public IInterpreter
{
public:
2017-05-23 18:01:50 +00:00
InterpreterDescribeQuery(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:01:50 +00:00
const Context & context;
BlockInputStreamPtr executeImpl();
};
}