Skip to content

Commit

Permalink
fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
sundarshankar89 committed Aug 2, 2024
1 parent d52db4e commit 37d87c9
Showing 1 changed file with 11 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,16 @@ otherCommand
| let
;

procStatement: call | declareCommand | let | executeImmediate | returnStatement
procStatement
: call
| declareCommand
| let
| executeImmediate
| returnStatement
| unresolvedStatement
;

unresolvedStatement: STRING | DBL_DOLLAR
;

beginTxn: BEGIN (WORK | TRANSACTION)? (NAME id)? | START TRANSACTION ( NAME id)?
Expand Down Expand Up @@ -2257,7 +2266,7 @@ taskOverlap: ALLOW_OVERLAPPING_EXECUTION EQ trueFalse
sql: EXECUTE IMMEDIATE DBL_DOLLAR | sqlCommand | call
;

call: CALL objectName L_PAREN exprList? R_PAREN SEMI
call: CALL objectName L_PAREN exprList? R_PAREN
;

createUser: CREATE orReplace? USER ifNotExists? id objectProperties? objectParams? sessionParams?
Expand Down

0 comments on commit 37d87c9

Please sign in to comment.