File tree Expand file tree Collapse file tree 4 files changed +174
-358
lines changed Expand file tree Collapse file tree 4 files changed +174
-358
lines changed Original file line number Diff line number Diff line change 3
3
* procedural language
4
4
*
5
5
* IDENTIFICATION
6
- * $Header: /cvsroot/pgsql/src/pl/plpgsql/src/pl_comp.c,v 1.54 2003/01/31 00:31:53 tgl Exp $
6
+ * $Header: /cvsroot/pgsql/src/pl/plpgsql/src/pl_comp.c,v 1.55 2003/03/25 00:34:23 tgl Exp $
7
7
*
8
8
* This software is copyrighted by Jan Wieck - Hamburg.
9
9
*
@@ -696,7 +696,7 @@ plpgsql_parse_dblword(char *word)
696
696
new = malloc (sizeof (PLpgSQL_recfield ));
697
697
new -> dtype = PLPGSQL_DTYPE_RECFIELD ;
698
698
new -> fieldname = strdup (cp [1 ]);
699
- new -> recno = ns -> itemno ;
699
+ new -> recparentno = ns -> itemno ;
700
700
701
701
plpgsql_adddatum ((PLpgSQL_datum * ) new );
702
702
@@ -799,7 +799,7 @@ plpgsql_parse_tripword(char *word)
799
799
new = malloc (sizeof (PLpgSQL_recfield ));
800
800
new -> dtype = PLPGSQL_DTYPE_RECFIELD ;
801
801
new -> fieldname = strdup (cp [2 ]);
802
- new -> recno = ns -> itemno ;
802
+ new -> recparentno = ns -> itemno ;
803
803
804
804
plpgsql_adddatum ((PLpgSQL_datum * ) new );
805
805
You can’t perform that action at this time.
0 commit comments