Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit323f0a6

Browse files
committed
Fix recent breakage of decl_cursor_arglist syntax, per Michael Paesold.
1 parent5b0fa0c commit323f0a6

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

‎src/pl/plpgsql/src/gram.y

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
* procedural language
55
*
66
* IDENTIFICATION
7-
* $PostgreSQL: pgsql/src/pl/plpgsql/src/gram.y,v 1.80 2005/07/02 17:01:59 momjian Exp $
7+
* $PostgreSQL: pgsql/src/pl/plpgsql/src/gram.y,v 1.81 2005/09/14 13:46:47 tgl Exp $
88
*
99
* This software is copyrighted by Jan Wieck - Hamburg.
1010
*
@@ -458,13 +458,13 @@ decl_cursor_args :
458458
}
459459
;
460460

461-
decl_cursor_arglist :decl_cursor_arglistdecl_cursor_arg
461+
decl_cursor_arglist :decl_cursor_arg
462462
{
463-
$$ =lappend($1,$2);
463+
$$ =list_make1($1);
464464
}
465-
|decl_cursor_arg
465+
|decl_cursor_arglist','decl_cursor_arg
466466
{
467-
$$ =list_make1($1);
467+
$$ =lappend($1,$3);
468468
}
469469
;
470470

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp