ClickHouse/src/Parsers/LiteralEscapingStyle.h
Nikolay Degterinsky 7321f5e543 Better
2023-08-10 06:34:10 +00:00

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 ('')
};
}