Skip to content

Commit

Permalink
Merge pull request #133 from makssent/F431_FIX_sharding
Browse files Browse the repository at this point in the history
F431 FETCH and T321
  • Loading branch information
TedCraft committed Sep 15, 2024
2 parents 8787728 + 625968c commit 1a72df5
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -504,7 +504,7 @@ outputArgumentList
;

assignmentStatement
: variableName EQ_ simpleExpr
: variableName EQ_ expr
;

transferStatement
Expand All @@ -517,13 +517,13 @@ whileStatement

fetchStatement
: FETCH cursorName
INTO COLON_ variable (COMMA_ (COLON_ variable))* SEMI_
(INTO COLON_ variable (COMMA_ (COLON_ variable))* SEMI_)?
| FETCH (NEXT
| PRIOR
| FIRST
| LAST
| ABSOLUTE NUMBER_
| RELATIVE NUMBER_ ) FROM cursorName (INTO LBT_ COLON_ RBT_ variable (COMMA_ (LBT_ COLON_ RBT_ variable))* SEMI_)
| RELATIVE NUMBER_ ) FROM cursorName (INTO LBT_ COLON_ RBT_ variable (COMMA_ (LBT_ COLON_ RBT_ variable))* SEMI_)?
;

ifStatement
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,6 @@ execute
| savepoint
| createTrigger
| alterTrigger
| executeBlock
| createSequence
| merge
| createUser
Expand Down

0 comments on commit 1a72df5

Please sign in to comment.