2012-12-15 03:09:04 +00:00
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
|
|
#include <DB/Storages/IStorage.h>
|
2013-02-21 10:02:33 +00:00
|
|
|
|
#include <DB/Parsers/TablePropertiesQueriesASTs.h>
|
2013-02-20 13:14:12 +00:00
|
|
|
|
#include <DB/Parsers/ASTIdentifier.h>
|
2012-12-15 03:09:04 +00:00
|
|
|
|
#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();
|
2013-02-20 13:14:12 +00:00
|
|
|
|
ASTPtr format_ast = dynamic_cast<ASTExistsQuery &>(*query_ptr).format;
|
2013-06-29 18:03:57 +00:00
|
|
|
|
String format_name = format_ast ? dynamic_cast<ASTIdentifier &>(*format_ast).name : context.getDefaultFormat();
|
2012-12-15 03:09:04 +00:00
|
|
|
|
|
|
|
|
|
BlockInputStreamPtr in = executeImpl();
|
2013-05-22 14:57:43 +00:00
|
|
|
|
BlockOutputStreamPtr out = context.getFormatFactory().getOutput(format_name, buf, sample);
|
2012-12-15 03:09:04 +00:00
|
|
|
|
|
|
|
|
|
copyData(*in, *out);
|
|
|
|
|
|
|
|
|
|
return in;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private:
|
|
|
|
|
ASTPtr query_ptr;
|
|
|
|
|
Context context;
|
|
|
|
|
|
|
|
|
|
Block getSampleBlock()
|
|
|
|
|
{
|
|
|
|
|
ColumnWithNameAndType col;
|
|
|
|
|
col.name = "result";
|
|
|
|
|
col.type = new DataTypeUInt8;
|
2013-06-18 14:12:10 +00:00
|
|
|
|
col.column = col.type->createColumn();
|
2012-12-15 03:09:04 +00:00
|
|
|
|
|
|
|
|
|
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);
|
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
}
|