2012-12-15 03:09:04 +00:00
|
|
|
#pragma once
|
|
|
|
|
2017-04-01 09:19:00 +00:00
|
|
|
#include <Interpreters/IInterpreter.h>
|
2019-03-11 14:01:45 +00:00
|
|
|
#include <Parsers/IAST_fwd.h>
|
2012-12-15 03:09:04 +00:00
|
|
|
|
|
|
|
|
|
|
|
namespace DB
|
|
|
|
{
|
|
|
|
|
2017-05-23 18:01:50 +00:00
|
|
|
/** Check that table exists. Return single row with single column "result" of type UInt8 and value 0 or 1.
|
2012-12-15 03:09:04 +00:00
|
|
|
*/
|
2021-04-10 23:33:54 +00:00
|
|
|
class InterpreterExistsQuery : public IInterpreter, WithContext
|
2012-12-15 03:09:04 +00:00
|
|
|
{
|
|
|
|
public:
|
2021-04-10 23:33:54 +00:00
|
|
|
InterpreterExistsQuery(const ASTPtr & query_ptr_, ContextPtr context_) : WithContext(context_), query_ptr(query_ptr_) { }
|
2012-12-15 03:09:04 +00:00
|
|
|
|
2016-12-12 07:24:56 +00:00
|
|
|
BlockIO execute() override;
|
2014-06-26 00:58:14 +00:00
|
|
|
|
2018-02-15 18:54:12 +00:00
|
|
|
static Block getSampleBlock();
|
|
|
|
|
2012-12-15 03:09:04 +00:00
|
|
|
private:
|
|
|
|
ASTPtr query_ptr;
|
|
|
|
|
2021-09-15 19:35:48 +00:00
|
|
|
QueryPipeline executeImpl();
|
2012-12-15 03:09:04 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
}
|