ClickHouse/src/Parsers/formatSettingName.h

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

18 lines
349 B
C++
Raw Normal View History

#pragma once
2020-09-17 22:45:12 +00:00
#include <iosfwd>
2021-10-02 07:13:14 +00:00
#include <base/types.h>
namespace DB
{
2020-11-09 16:05:40 +00:00
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.
2020-11-09 16:05:40 +00:00
void formatSettingName(const String & setting_name, WriteBuffer & out);
}