Skip to content

Commit cafa59a

Browse files
kashwyltrk2
authored andcommitted
Kusto-phase3: fix typo for sort issue
1 parent 2c477be commit cafa59a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Parsers/Kusto/ParserKQLSort.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ bool ParserKQLSort::parseImpl(Pos & pos, ASTPtr & node, Expected & expected)
5757
++tmp_pos;
5858
tmp = String(tmp_pos->begin, tmp_pos->end);
5959
if (tmp_pos->isEnd() || (tmp != "first" && tmp != "last"))
60-
throw Exception(ErrorCodes::SYNTAX_ERROR, "Invalid nulls postion of sort operator");
60+
throw Exception(ErrorCodes::SYNTAX_ERROR, "Invalid nulls position of sort operator");
6161

6262
nulls_position = "nulls " + tmp;
6363
if (column_expr.empty())

0 commit comments

Comments
 (0)