mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-19 22:22:00 +00:00
18 lines
480 B
C++
18 lines
480 B
C++
#pragma once
|
|
|
|
|
|
namespace DB
|
|
{
|
|
|
|
/// Method to quote identifiers.
|
|
/// NOTE There could be differences in escaping rules inside quotes. Escaping rules may not match that required by specific external DBMS.
|
|
enum class IdentifierQuotingStyle
|
|
{
|
|
None, /// Write as-is, without quotes.
|
|
Backticks, /// `clickhouse` style
|
|
DoubleQuotes, /// "postgres" style
|
|
BackticksMySQL, /// `mysql` style, most same as Backticks, but it uses '``' to escape '`'
|
|
};
|
|
|
|
}
|