Skip to content
This repository was archived by the owner on Jul 15, 2021. It is now read-only.

Commit 520618a

Browse files
committed
Allow ALL at beginning of function arguments.
``` sql func_name(ALL a) ```
1 parent 16f9a17 commit 520618a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/grammar.pegjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -715,7 +715,7 @@ function_call_args "Function Call Arguments"
715715
}
716716

717717
args_list_distinct
718-
= s:( DISTINCT ) o
718+
= s:( DISTINCT / ALL ) o
719719
{
720720
return {
721721
'filter': keyNode(s)

0 commit comments

Comments
 (0)