mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-12-15 02:41:59 +00:00
deda29b46b
See #39224
28 lines
593 B
C++
28 lines
593 B
C++
#pragma once
|
|
|
|
#include <base/types.h>
|
|
#include <base/StringRef.h>
|
|
#include <concepts>
|
|
|
|
|
|
namespace DB
|
|
{
|
|
[[nodiscard]] String quoteString(std::string_view x);
|
|
|
|
// Prefer string_view over StringRef for implicit conversions
|
|
[[nodiscard]] inline String quoteString(std::same_as<StringRef> auto x)
|
|
{
|
|
return quoteString(std::string_view{x.data, x.size});
|
|
}
|
|
|
|
/// Double quote the string.
|
|
String doubleQuoteString(StringRef x);
|
|
|
|
/// Quote the identifier with backquotes.
|
|
String backQuote(StringRef x);
|
|
|
|
/// Quote the identifier with backquotes, if required.
|
|
String backQuoteIfNeed(StringRef x);
|
|
|
|
}
|