mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-12-14 10:22:10 +00:00
17 lines
377 B
C++
17 lines
377 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, /// `mysql` style
|
||
|
DoubleQuotes /// "postgres" style
|
||
|
};
|
||
|
|
||
|
}
|