Another style fix

This commit is contained in:
Robert Schulze 2023-03-28 21:01:17 +00:00
parent 6c84eabb79
commit 12559236ee
No known key found for this signature in database
GPG Key ID: 26703B55FB13728A

View File

@ -33,7 +33,7 @@ void ASTShowColumnsQuery::formatQueryImpl(const FormatSettings & settings, Forma
if (!like.empty())
settings.ostr << (settings.hilite ? hilite_keyword : "")
<< (not_like ? " NOT " : "")
<< (case_insensitive_like ? " ILIKE " : " LIKE" )
<< (case_insensitive_like ? " ILIKE " : " LIKE")
<< (settings.hilite ? hilite_none : "")
<< DB::quote << like;