mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-12-12 01:12:12 +00:00
21 lines
410 B
C++
21 lines
410 B
C++
#pragma once
|
|
|
|
#include <Core/Types.h>
|
|
#include <common/StringRef.h>
|
|
|
|
|
|
namespace DB
|
|
{
|
|
/// Quote the string.
|
|
String quoteString(const StringRef & x);
|
|
|
|
/// Double quote the string.
|
|
String doubleQuoteString(const StringRef & x);
|
|
|
|
/// Quote the identifier with backquotes.
|
|
String backQuote(const StringRef & x);
|
|
|
|
/// Quote the identifier with backquotes, if required.
|
|
String backQuoteIfNeed(const StringRef & x);
|
|
}
|