ClickHouse/src/Parsers/LiteralEscapingStyle.h

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

15 lines
288 B
C++
Raw Normal View History

2023-08-10 06:32:28 +00:00
#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 ('')
};
}