Skip to content

Commit bf6830d

Browse files
authored
Update PlSqlParser.g4
Removed unnecessary grammar keyword brackets :D
1 parent 3ddc61d commit bf6830d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

sql/plsql/PlSqlParser.g4

+1-1
Original file line numberDiff line numberDiff line change
@@ -178,7 +178,7 @@ procedure_spec
178178

179179
function_spec
180180
: FUNCTION identifier ('(' parameter ( ',' parameter)* ')')?
181-
RETURN type_spec (PIPELINED)? (DETERMINISTIC)? (RESULT_CACHE)? ';'
181+
RETURN type_spec PIPELINED? DETERMINISTIC? (RESULT_CACHE)? ';'
182182
;
183183

184184
package_obj_body

0 commit comments

Comments
 (0)