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 83fd594 commit 31a8996Copy full SHA for 31a8996
src/backend/parser/gram.y
@@ -11,7 +11,7 @@
11
*
12
13
* IDENTIFICATION
14
- * $Header: /cvsroot/pgsql/src/backend/parser/gram.y,v 2.137 2000/01/29 16:58:37 petere Exp $
+ * $Header: /cvsroot/pgsql/src/backend/parser/gram.y,v 2.138 2000/02/02 20:54:17 wieck Exp $
15
16
* HISTORY
17
* AUTHOR DATE MAJOR EVENT
@@ -1501,8 +1501,7 @@ CreateTrigStmt: CREATE TRIGGER name TriggerActionTime TriggerEvents ON
1501
n->args = $18;
1502
n->before = false;
1503
n->row = true;
1504
- n->actions[0] = $6;
1505
- n->actions[1] = '\0';
+ memcpy (n->actions, $6, 4);
1506
n->lang = NULL; /* unused */
1507
n->text = NULL; /* unused */
1508
n->attr = NULL; /* unused */
0 commit comments