ClickHouse/src/Dictionaries/ExternalQueryBuilder.h

77 lines
2.2 KiB
C++
Raw Normal View History

2016-04-10 02:47:29 +00:00
#pragma once
2016-12-08 02:49:04 +00:00
#include <string>
#include <Columns/IColumn.h>
#include <Formats/FormatSettings.h>
#include <Parsers/IdentifierQuotingStyle.h>
2016-04-10 02:47:29 +00:00
namespace DB
{
2016-12-12 06:02:35 +00:00
struct DictionaryStructure;
2016-12-08 02:49:04 +00:00
class WriteBuffer;
2016-04-10 02:47:29 +00:00
/** Builds a query to load data from external database.
2016-04-10 02:47:29 +00:00
*/
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);
2016-04-10 02:47:29 +00:00
2016-04-10 02:47:29 +00:00
private:
const FormatSettings format_settings;
2020-05-26 19:21:18 +00:00
void composeLoadAllQuery(WriteBuffer & out) const;
/// Expression in form (x = c1 AND y = c2 ...)
2017-05-25 19:52:05 +00:00
void composeKeyCondition(const Columns & key_columns, const size_t row, WriteBuffer & out) const;
/// Expression in form (x, y, ...)
2020-05-26 19:21:18 +00:00
void composeKeyTupleDefinition(WriteBuffer & out) const;
/// Expression in form (c1, c2, ...)
2017-05-25 19:52:05 +00:00
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;
2016-04-10 02:47:29 +00:00
};
}