mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-11 18:14:03 +00:00
82 lines
1.7 KiB
C++
82 lines
1.7 KiB
C++
#pragma once
|
||
|
||
#include <DB/Storages/IStorage.h>
|
||
#include <DB/Parsers/ASTExistsQuery.h>
|
||
#include <DB/Interpreters/Context.h>
|
||
#include <DB/DataStreams/OneBlockInputStream.h>
|
||
#include <DB/DataStreams/BlockIO.h>
|
||
#include <DB/DataStreams/copyData.h>
|
||
#include <DB/DataTypes/DataTypesNumberFixed.h>
|
||
|
||
|
||
namespace DB
|
||
{
|
||
|
||
|
||
/** Проверить, существует ли таблица. Вернуть одну строку с одним столбцом result типа UInt8 со значением 0 или 1.
|
||
*/
|
||
class InterpreterExistsQuery
|
||
{
|
||
public:
|
||
InterpreterExistsQuery(ASTPtr query_ptr_, Context & context_)
|
||
: query_ptr(query_ptr_), context(context_) {}
|
||
|
||
BlockIO execute()
|
||
{
|
||
BlockIO res;
|
||
res.in = executeImpl();
|
||
res.in_sample = getSampleBlock();
|
||
|
||
return res;
|
||
}
|
||
|
||
BlockInputStreamPtr executeAndFormat(WriteBuffer & buf)
|
||
{
|
||
Block sample = getSampleBlock();
|
||
String format_name = "TabSeparated";
|
||
|
||
BlockInputStreamPtr in = executeImpl();
|
||
BlockOutputStreamPtr out = context.getFormatFactory().getOutput(format_name, buf, sample);
|
||
|
||
copyData(*in, *out);
|
||
|
||
return in;
|
||
}
|
||
|
||
private:
|
||
ASTPtr query_ptr;
|
||
Context context;
|
||
|
||
Block getSampleBlock()
|
||
{
|
||
ColumnWithNameAndType col;
|
||
col.name = "result";
|
||
col.type = new DataTypeUInt8;
|
||
|
||
Block block;
|
||
block.insert(col);
|
||
|
||
return block;
|
||
}
|
||
|
||
BlockInputStreamPtr executeImpl()
|
||
{
|
||
const ASTExistsQuery & ast = dynamic_cast<const ASTExistsQuery &>(*query_ptr);
|
||
|
||
bool res = context.isTableExist(ast.database, ast.table);
|
||
|
||
ColumnWithNameAndType col;
|
||
col.name = "result";
|
||
col.type = new DataTypeUInt8;
|
||
col.column = new ColumnConstUInt8(1, res);
|
||
|
||
Block block;
|
||
block.insert(col);
|
||
|
||
return new OneBlockInputStream(block);
|
||
}
|
||
};
|
||
|
||
|
||
}
|