Skip to content

Commit 8c86c2b

Browse files
Fix tidy
1 parent f1f1ee0 commit 8c86c2b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Parsers/ASTSelectWithUnionQuery.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ void ASTSelectWithUnionQuery::formatQueryImpl(WriteBuffer & ostr, const FormatSe
8383
/// SELECT * EXCEPT SELECT 1 -- two queries
8484
/// SELECT * EXCEPT col -- a modifier for asterisk
8585
/// For this reason, add parentheses when formatting any side of EXCEPT.
86-
auto next = it;
86+
ASTs::const_iterator next = it;
8787
++next;
8888
if ((it != list_of_selects->children.begin() && is_except(get_mode(it)))
8989
|| (next != list_of_selects->children.end() && is_except(get_mode(next))))

0 commit comments

Comments
 (0)