mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-12-14 02:12:21 +00:00
15 lines
288 B
C++
15 lines
288 B
C++
|
#pragma once
|
||
|
|
||
|
|
||
|
namespace DB
|
||
|
{
|
||
|
|
||
|
/// Method to escape single quotes.
|
||
|
enum class LiteralEscapingStyle
|
||
|
{
|
||
|
Regular, /// Escape backslashes with backslash (\\) and quotes with backslash (\')
|
||
|
PostgreSQL, /// Do not escape backslashes (\), escape quotes with quote ('')
|
||
|
};
|
||
|
|
||
|
}
|