blob: ac7610bfe8dd4e77c31ec0b2e9d15347cec86aba (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
#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);
}
|