@@ -201,7 +201,6 @@ class IAST : public std::enable_shared_from_this<IAST>, public TypePromotion<IAS
201201 bool show_secrets; // / Show secret parts of the AST (e.g. passwords, encryption keys).
202202 char nl_or_ws; // / Newline or whitespace.
203203 LiteralEscapingStyle literal_escaping_style;
204- bool additional_authentication_method;
205204
206205 explicit FormatSettings (
207206 WriteBuffer & ostr_,
@@ -210,8 +209,7 @@ class IAST : public std::enable_shared_from_this<IAST>, public TypePromotion<IAS
210209 bool always_quote_identifiers_ = false ,
211210 IdentifierQuotingStyle identifier_quoting_style_ = IdentifierQuotingStyle::Backticks,
212211 bool show_secrets_ = true ,
213- LiteralEscapingStyle literal_escaping_style_ = LiteralEscapingStyle::Regular,
214- bool additional_authentication_method_ = false )
212+ LiteralEscapingStyle literal_escaping_style_ = LiteralEscapingStyle::Regular)
215213 : ostr(ostr_)
216214 , one_line(one_line_)
217215 , hilite(hilite_)
@@ -220,7 +218,6 @@ class IAST : public std::enable_shared_from_this<IAST>, public TypePromotion<IAS
220218 , show_secrets(show_secrets_)
221219 , nl_or_ws(one_line ? ' ' : ' \n ' )
222220 , literal_escaping_style(literal_escaping_style_)
223- , additional_authentication_method(additional_authentication_method_)
224221 {
225222 }
226223
@@ -233,7 +230,6 @@ class IAST : public std::enable_shared_from_this<IAST>, public TypePromotion<IAS
233230 , show_secrets(other.show_secrets)
234231 , nl_or_ws(other.nl_or_ws)
235232 , literal_escaping_style(other.literal_escaping_style)
236- , additional_authentication_method(other.additional_authentication_method)
237233 {
238234 }
239235
0 commit comments