Skip to content

Commit 27d5a69

Browse files
Update src/Parsers/ASTFunction.cpp
Co-authored-by: Alexey Milovidov <[email protected]>
1 parent e25b972 commit 27d5a69

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Parsers/ASTFunction.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -531,7 +531,7 @@ void ASTFunction::formatImplWithoutAlias(WriteBuffer & ostr, const FormatSetting
531531
const auto * lit_left = arguments->children[0]->as<ASTLiteral>();
532532
const auto * lit_right = arguments->children[1]->as<ASTLiteral>();
533533

534-
if (const auto * _ = arguments->children[0]->as<ASTAsterisk>())
534+
if (arguments->children[0]->as<ASTAsterisk>())
535535
tuple_arguments_valid = false;
536536

537537
if (lit_left)

0 commit comments

Comments
 (0)