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>
|
2012-12-15 03:09:04 +00:00
|
|
|
|
#include <DB/Interpreters/Context.h>
|
2015-06-18 02:11:05 +00:00
|
|
|
|
#include <DB/Interpreters/IInterpreter.h>
|
2012-12-15 03:09:04 +00:00
|
|
|
|
#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.
|
|
|
|
|
*/
|
2015-06-18 02:11:05 +00:00
|
|
|
|
class InterpreterExistsQuery : public IInterpreter
|
2012-12-15 03:09:04 +00:00
|
|
|
|
{
|
|
|
|
|
public:
|
|
|
|
|
InterpreterExistsQuery(ASTPtr query_ptr_, Context & context_)
|
|
|
|
|
: query_ptr(query_ptr_), context(context_) {}
|
|
|
|
|
|
2015-06-18 02:11:05 +00:00
|
|
|
|
BlockIO execute() override
|
2012-12-15 03:09:04 +00:00
|
|
|
|
{
|
|
|
|
|
BlockIO res;
|
|
|
|
|
res.in = executeImpl();
|
|
|
|
|
res.in_sample = getSampleBlock();
|
|
|
|
|
|
|
|
|
|
return res;
|
|
|
|
|
}
|
2014-06-26 00:58:14 +00:00
|
|
|
|
|
2012-12-15 03:09:04 +00:00
|
|
|
|
private:
|
|
|
|
|
ASTPtr query_ptr;
|
|
|
|
|
Context context;
|
|
|
|
|
|
|
|
|
|
Block getSampleBlock()
|
|
|
|
|
{
|
2016-08-04 23:35:07 +00:00
|
|
|
|
return {{ std::make_shared<ColumnConstUInt8>(1, 0), std::make_shared<DataTypeUInt8>(), "result" }};
|
2012-12-15 03:09:04 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
BlockInputStreamPtr executeImpl()
|
|
|
|
|
{
|
2014-06-26 00:58:14 +00:00
|
|
|
|
const ASTExistsQuery & ast = typeid_cast<const ASTExistsQuery &>(*query_ptr);
|
2012-12-15 03:09:04 +00:00
|
|
|
|
bool res = context.isTableExist(ast.database, ast.table);
|
2014-06-26 00:58:14 +00:00
|
|
|
|
|
2016-08-04 23:35:07 +00:00
|
|
|
|
return std::make_shared<OneBlockInputStream>(Block{{
|
|
|
|
|
std::make_shared<ColumnConstUInt8>(1, res),
|
|
|
|
|
std::make_shared<DataTypeUInt8>(),
|
|
|
|
|
"result" }});
|
2012-12-15 03:09:04 +00:00
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
}
|