Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
P
Postgres FD Implementation
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Abuhujair Javed
Postgres FD Implementation
Commits
1d01d484
Commit
1d01d484
authored
Sep 22, 2002
by
Tom Lane
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Remove commas for compatibility with newer releases of bison.
parent
67ddac35
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
18 additions
and
18 deletions
+18
-18
src/pl/plpgsql/src/gram.y
src/pl/plpgsql/src/gram.y
+18
-18
No files found.
src/pl/plpgsql/src/gram.y
View file @
1d01d484
...
@@ -4,7 +4,7 @@
...
@@ -4,7 +4,7 @@
* procedural language
* procedural language
*
*
* IDENTIFICATION
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/pl/plpgsql/src/gram.y,v 1.3
7 2002/09/01 16:28:06
tgl Exp $
* $Header: /cvsroot/pgsql/src/pl/plpgsql/src/gram.y,v 1.3
8 2002/09/22 21:56:47
tgl Exp $
*
*
* This software is copyrighted by Jan Wieck - Hamburg.
* This software is copyrighted by Jan Wieck - Hamburg.
*
*
...
@@ -98,40 +98,40 @@ static void check_assignable(PLpgSQL_datum *datum);
...
@@ -98,40 +98,40 @@ static void check_assignable(PLpgSQL_datum *datum);
%type <declhdr> decl_sect
%type <declhdr> decl_sect
%type <varname> decl_varname
%type <varname> decl_varname
%type <str> decl_renname
%type <str> decl_renname
%type <ival> decl_const
,
decl_notnull
%type <ival> decl_const decl_notnull
%type <expr> decl_defval
,
decl_cursor_query
%type <expr> decl_defval decl_cursor_query
%type <dtype> decl_datatype
%type <dtype> decl_datatype
%type <row> decl_rowtype
, decl_cursor_args,
decl_cursor_arglist
%type <row> decl_rowtype
decl_cursor_args
decl_cursor_arglist
%type <nsitem> decl_aliasitem
%type <nsitem> decl_aliasitem
%type <str> decl_stmts
,
decl_stmt
%type <str> decl_stmts decl_stmt
%type <expr> expr_until_semi
, expr_until_then,
expr_until_loop
%type <expr> expr_until_semi
expr_until_then
expr_until_loop
%type <expr> opt_exitcond
%type <expr> opt_exitcond
%type <ival> assign_var
,
cursor_variable
%type <ival> assign_var cursor_variable
%type <var> fori_var
, cursor_varptr,
decl_cursor_arg
%type <var> fori_var
cursor_varptr
decl_cursor_arg
%type <varname> fori_varname
%type <varname> fori_varname
%type <forilow> fori_lower
%type <forilow> fori_lower
%type <rec> fors_target
%type <rec> fors_target
%type <str> opt_lblname
,
opt_label
%type <str> opt_lblname opt_label
%type <str> opt_exitlabel
%type <str> opt_exitlabel
%type <str> execsql_start
%type <str> execsql_start
%type <stmts> proc_sect
, proc_stmts, stmt_else,
loop_body
%type <stmts> proc_sect
proc_stmts stmt_else
loop_body
%type <stmt> proc_stmt
,
pl_block
%type <stmt> proc_stmt pl_block
%type <stmt> stmt_assign
, stmt_if, stmt_loop, stmt_while,
stmt_exit
%type <stmt> stmt_assign
stmt_if stmt_loop stmt_while
stmt_exit
%type <stmt> stmt_return
, stmt_return_next, stmt_raise,
stmt_execsql
%type <stmt> stmt_return
stmt_return_next stmt_raise
stmt_execsql
%type <stmt> stmt_fori
, stmt_fors, stmt_select,
stmt_perform
%type <stmt> stmt_fori
stmt_fors stmt_select
stmt_perform
%type <stmt> stmt_dynexecute
, stmt_dynfors,
stmt_getdiag
%type <stmt> stmt_dynexecute
stmt_dynfors
stmt_getdiag
%type <stmt> stmt_open
, stmt_fetch,
stmt_close
%type <stmt> stmt_open
stmt_fetch
stmt_close
%type <intlist> raise_params
%type <intlist> raise_params
%type <ival> raise_level
,
raise_param
%type <ival> raise_level raise_param
%type <str> raise_msg
%type <str> raise_msg
%type <dtlist> getdiag_list
%type <dtlist> getdiag_list
%type <ival> getdiag_item
,
getdiag_target
%type <ival> getdiag_item getdiag_target
%type <ival> lno
%type <ival> lno
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment