Skip to content

Commit

Permalink
Merge pull request #2078 from OTooleMichael/patch-1
Browse files Browse the repository at this point in the history
Copy FROM brackets have optional whitespace
  • Loading branch information
ray6080 committed Sep 25, 2023
2 parents c22396f + b134b98 commit 2b6de7e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/antlr4/Cypher.g4
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ kU_CopyFromByColumn
: COPY SP oC_SchemaName SP FROM SP '(' SP? StringLiteral ( SP? ',' SP? StringLiteral )* ')' SP BY SP COLUMN ;

kU_CopyTO
: COPY SP '(' oC_Query ')' SP TO SP StringLiteral ;
: COPY SP '(' SP? oC_Query SP? ')' SP TO SP StringLiteral ;

kU_StandaloneCall
: CALL SP oC_SymbolicName SP? '=' SP? oC_Literal ;
Expand Down

0 comments on commit 2b6de7e

Please sign in to comment.