mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-22 07:31:57 +00:00
18 lines
349 B
C++
18 lines
349 B
C++
#pragma once
|
|
|
|
#include <iosfwd>
|
|
#include <base/types.h>
|
|
|
|
|
|
namespace DB
|
|
{
|
|
|
|
class WriteBuffer;
|
|
|
|
/// Outputs built-in or custom setting's name.
|
|
/// The function is like backQuoteIfNeed() but didn't quote with backticks
|
|
/// if the name consists of identifiers joined with dots.
|
|
void formatSettingName(const String & setting_name, WriteBuffer & out);
|
|
|
|
}
|