Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5b0fa0c commit 323f0a6Copy full SHA for 323f0a6
src/pl/plpgsql/src/gram.y
@@ -4,7 +4,7 @@
4
* procedural language
5
*
6
* IDENTIFICATION
7
- * $PostgreSQL: pgsql/src/pl/plpgsql/src/gram.y,v 1.80 2005/07/02 17:01:59 momjian Exp $
+ * $PostgreSQL: pgsql/src/pl/plpgsql/src/gram.y,v 1.81 2005/09/14 13:46:47 tgl Exp $
8
9
* This software is copyrighted by Jan Wieck - Hamburg.
10
@@ -458,13 +458,13 @@ decl_cursor_args :
458
}
459
;
460
461
-decl_cursor_arglist : decl_cursor_arglist decl_cursor_arg
+decl_cursor_arglist : decl_cursor_arg
462
{
463
- $$ = lappend($1, $2);
+ $$ = list_make1($1);
464
465
- | decl_cursor_arg
+ | decl_cursor_arglist ',' decl_cursor_arg
466
467
- $$ = list_make1($1);
+ $$ = lappend($1, $3);
468
469
470
0 commit comments