mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-18 05:32:52 +00:00
38fa1af5ca
from the `system.quota` and `system.quotas` tables.
32 lines
904 B
C++
32 lines
904 B
C++
#pragma once
|
|
|
|
#include <DataStreams/BlockIO.h>
|
|
|
|
#include <Processors/QueryPipeline.h>
|
|
|
|
namespace DB
|
|
{
|
|
|
|
/** Interpreters interface for different queries.
|
|
*/
|
|
class IInterpreter
|
|
{
|
|
public:
|
|
/** 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;
|
|
|
|
virtual QueryPipeline executeWithProcessors() { throw Exception("executeWithProcessors not implemented", ErrorCodes::NOT_IMPLEMENTED); }
|
|
|
|
virtual bool canExecuteWithProcessors() const { return false; }
|
|
|
|
virtual bool ignoreQuota() const { return false; }
|
|
virtual bool ignoreLimits() const { return false; }
|
|
|
|
virtual ~IInterpreter() {}
|
|
};
|
|
|
|
}
|