mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-12-18 04:12:19 +00:00
97f2a2213e
* Move some code outside dbms/src folder * Fix paths
75 lines
2.1 KiB
C++
75 lines
2.1 KiB
C++
#pragma once
|
|
|
|
#include <string>
|
|
#include <Columns/IColumn.h>
|
|
#include <Formats/FormatSettings.h>
|
|
#include <Parsers/IdentifierQuotingStyle.h>
|
|
|
|
|
|
namespace DB
|
|
{
|
|
struct DictionaryStructure;
|
|
class WriteBuffer;
|
|
|
|
|
|
/** Builds a query to load data from external database.
|
|
*/
|
|
struct ExternalQueryBuilder
|
|
{
|
|
const DictionaryStructure & dict_struct;
|
|
std::string db;
|
|
std::string table;
|
|
std::string schema;
|
|
const std::string & where;
|
|
|
|
IdentifierQuotingStyle quoting_style;
|
|
|
|
|
|
ExternalQueryBuilder(
|
|
const DictionaryStructure & dict_struct_,
|
|
const std::string & db_,
|
|
const std::string & table_,
|
|
const std::string & where_,
|
|
IdentifierQuotingStyle quoting_style_);
|
|
|
|
/** Generate a query to load all data. */
|
|
std::string composeLoadAllQuery() const;
|
|
|
|
/** Generate a query to load data after certain time point */
|
|
std::string composeUpdateQuery(const std::string & update_field, const std::string & time_point) const;
|
|
|
|
/** Generate a query to load data by set of UInt64 keys. */
|
|
std::string composeLoadIdsQuery(const std::vector<UInt64> & ids);
|
|
|
|
/** Generate a query to load data by set of composite keys.
|
|
* There are two methods of specification of composite keys in WHERE:
|
|
* 1. (x = c11 AND y = c12) OR (x = c21 AND y = c22) ...
|
|
* 2. (x, y) IN ((c11, c12), (c21, c22), ...)
|
|
*/
|
|
enum LoadKeysMethod
|
|
{
|
|
AND_OR_CHAIN,
|
|
IN_WITH_TUPLES,
|
|
};
|
|
|
|
std::string composeLoadKeysQuery(const Columns & key_columns, const std::vector<size_t> & requested_rows, LoadKeysMethod method);
|
|
|
|
|
|
private:
|
|
const FormatSettings format_settings;
|
|
|
|
/// Expression in form (x = c1 AND y = c2 ...)
|
|
void composeKeyCondition(const Columns & key_columns, const size_t row, WriteBuffer & out) const;
|
|
|
|
/// Expression in form (x, y, ...)
|
|
std::string composeKeyTupleDefinition() const;
|
|
|
|
/// Expression in form (c1, c2, ...)
|
|
void composeKeyTuple(const Columns & key_columns, const size_t row, WriteBuffer & out) const;
|
|
|
|
/// Write string with specified quoting style.
|
|
void writeQuoted(const std::string & s, WriteBuffer & out) const;
|
|
};
|
|
|
|
}
|