Skip to content

Commit

Permalink
fix typo in error message
Browse files Browse the repository at this point in the history
  • Loading branch information
verhovsky authored and findepi committed Jun 30, 2022
1 parent 2698c6a commit 540aacc
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -2706,7 +2706,7 @@ public Node visitFunctionCall(SqlBaseParser.FunctionCallContext context)
}

if (name.toString().equalsIgnoreCase("$internal$bind")) {
check(context.expression().size() >= 1, "The '$internal$bind' function must have at least one arguments", context);
check(context.expression().size() >= 1, "The '$internal$bind' function must have at least one argument", context);
check(!window.isPresent(), "OVER clause not valid for '$internal$bind' function", context);
check(!distinct, "DISTINCT not valid for '$internal$bind' function", context);
check(nullTreatment == null, "Null treatment clause not valid for '$internal$bind' function", context);
Expand Down

0 comments on commit 540aacc

Please sign in to comment.