ClickHouse/dbms/src/Interpreters/IInterpreter.h

29 lines
792 B
C++
Raw Normal View History

2015-06-18 02:11:05 +00:00
#pragma once
#include <DataStreams/BlockIO.h>
2015-06-18 02:11:05 +00:00
2019-03-26 18:28:37 +00:00
#include <Processors/QueryPipeline.h>
2015-06-18 02:11:05 +00:00
namespace DB
{
2017-06-02 21:37:28 +00:00
/** Interpreters interface for different queries.
2015-06-18 02:11:05 +00:00
*/
class IInterpreter
{
public:
2017-06-02 21:37:28 +00:00
/** For queries that return a result (SELECT and similar), sets in BlockIO a stream from which you can read this result.
* For queries that receive data (INSERT), sets a thread in BlockIO where you can write data.
* For queries that do not require data and return nothing, BlockIO will be empty.
*/
virtual BlockIO execute() = 0;
2015-06-18 02:11:05 +00:00
2019-03-26 18:28:37 +00:00
virtual QueryPipeline executeWithProcessors() { throw Exception("executeWithProcessors not implemented", ErrorCodes::NOT_IMPLEMENTED); }
virtual bool canExecuteWithProcessors() const { return false; }
virtual ~IInterpreter() {}
2015-06-18 02:11:05 +00:00
};
}