ClickHouse/dbms/src/Storages/transformQueryForExternalDatabase.h

35 lines
909 B
C++
Raw Normal View History

2017-12-26 21:34:06 +00:00
#pragma once
#include <Core/Types.h>
2017-12-27 21:45:05 +00:00
#include <Core/NamesAndTypes.h>
2017-12-26 21:34:06 +00:00
namespace DB
{
class IAST;
class Context;
/** For given ClickHouse query,
* creates another query in a form of
*
* SELECT columns... FROM db.table WHERE ...
*
* where 'columns' are all required columns to read from "left" table of original query,
* and WHERE contains subset of (AND-ed) conditions from original query,
* that contain only compatible expressions.
*
* Compatible expressions are comparisons of identifiers, constants, and logical operations on them.
*
* NOTE There are concerns with proper quoting of identifiers for remote database.
* Some databases use `quotes` and other use "quotes".
*/
String transformQueryForExternalDatabase(
const IAST & query,
const NamesAndTypesList & available_columns,
const String & database,
const String & table,
const Context & context);
}