Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion plsql/PlSqlParser.g4
Original file line number Diff line number Diff line change
Expand Up @@ -5687,8 +5687,9 @@ return_statement
: RETURN expression?
;

// BYT-8268: Made CALL keyword mandatory to prevent misidentifying keywords like CASCADE as procedure calls
call_statement
: CALL? routine_name function_argument? (INTO bind_variable)?
: CALL routine_name function_argument? (INTO bind_variable)?
;

pipe_row_statement
Expand Down
Loading
Loading