mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-10 01:25:21 +00:00
Merge pull request #48297 from murfel/fix-forgotten-showsecrets-in-semi-copy-ctor
Fix: copy forgotten show_secrets in FormatSettings semi-copy-ctor
This commit is contained in:
commit
1b1fdeddd2
@ -208,7 +208,8 @@ public:
|
||||
|
||||
FormatSettings(WriteBuffer & ostr_, const FormatSettings & other)
|
||||
: ostr(ostr_), hilite(other.hilite), one_line(other.one_line),
|
||||
always_quote_identifiers(other.always_quote_identifiers), identifier_quoting_style(other.identifier_quoting_style)
|
||||
always_quote_identifiers(other.always_quote_identifiers), identifier_quoting_style(other.identifier_quoting_style),
|
||||
show_secrets(other.show_secrets)
|
||||
{
|
||||
nl_or_ws = one_line ? ' ' : '\n';
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user