Skip to content

Commit

Permalink
Small test change.
Browse files Browse the repository at this point in the history
  • Loading branch information
afoucret committed Nov 19, 2024
1 parent ea86e2b commit 9d99721
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -1308,8 +1308,8 @@ public void testKqlFunctionsNotAllowedAfterCommands() throws Exception {
error("from test | STATS c = COUNT(emp_no) BY languages | rename c as total_emps | where kql(\"Anna\")")
);
assertEquals(
"1:54: [KQL] function cannot be used after KEEP",
error("from test | rename last_name as name | keep emp_no | where kql(\"Anna\")")
"1:54: [KQL] function cannot be used after DROP",
error("from test | rename last_name as name | drop emp_no | where kql(\"Anna\")")
);
}

Expand Down

0 comments on commit 9d99721

Please sign in to comment.