ClickHouse/dbms/include/DB/Interpreters/executeQuery.h

43 lines
1.8 KiB
C++
Raw Normal View History

2011-10-30 11:30:52 +00:00
#pragma once
2012-05-22 18:32:45 +00:00
#include <DB/Core/QueryProcessingStage.h>
2015-06-18 02:11:05 +00:00
#include <DB/DataStreams/BlockIO.h>
2011-10-30 11:30:52 +00:00
namespace DB
{
2017-01-18 13:53:20 +00:00
/// Parse and execute a query.
2011-10-30 11:30:52 +00:00
void executeQuery(
2017-01-18 13:53:20 +00:00
ReadBuffer & istr, /// Where to read query from (and data for INSERT, if present).
WriteBuffer & ostr, /// Where to write query output to.
bool allow_into_outfile, /// If true and the query contains INTO OUTFILE section, redirect output to that file.
Context & context, /// DB, tables, data types, storage engines, functions, aggregate functions...
std::function<void(const String &)> set_content_type /// If non-empty callback is passed, it will be called with the Content-Type of the result.
);
2011-10-30 11:30:52 +00:00
2012-03-11 08:52:56 +00:00
2017-01-18 13:53:20 +00:00
/// More low-level function for server-to-server interaction.
/// Prepares a query for execution but doesn't execute it.
/// Returns a pair of block streams which, when used, will result in query execution.
/// This means that the caller can to the extent control the query execution pipeline.
///
/// To execute:
/// * if present, write INSERT data into BlockIO::out
/// * then read the results from BlockIO::in.
///
/// If the query doesn't involve data insertion or returning of results, out and in respectively
/// will be equal to nullptr.
///
/// Correctly formatting the results (according to INTO OUTFILE and FORMAT sections)
/// must be done separately.
2012-03-11 08:52:56 +00:00
BlockIO executeQuery(
2017-01-18 13:53:20 +00:00
const String & query, /// Query text without INSERT data. The latter must be written to BlockIO::out.
Context & context, /// DB, tables, data types, storage engines, functions, aggregate functions...
bool internal = false, /// If true, this query is caused by another query and thus needn't be registered in the ProcessList.
QueryProcessingStage::Enum stage = QueryProcessingStage::Complete /// To which stage the query must be executed.
);
2012-03-11 08:52:56 +00:00
2011-10-30 11:30:52 +00:00
}