Skip to content

Commit

Permalink
fix style
Browse files Browse the repository at this point in the history
  • Loading branch information
hendrik-m committed Aug 3, 2023
1 parent 72e6b1d commit b53084c
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/Parsers/ExpressionElementParsers.cpp
Expand Up @@ -251,7 +251,8 @@ bool ParserTableAsStringLiteralIdentifier::parseImpl(Pos & pos, ASTPtr & node, E
ReadBufferFromMemory in(pos->begin, pos->size());
String s;

if (!tryReadQuotedStringInto(s, in)) {
if (!tryReadQuotedStringInto(s, in))
{
expected.add(pos, "string literal");
return false;
}
Expand Down

0 comments on commit b53084c

Please sign in to comment.