1
0
mirror of https://github.com/postgres/postgres.git synced 2025-07-12 21:01:52 +03:00

Major man page update from Tom Lane. c

This commit is contained in:
Bruce Momjian
1998-07-14 01:45:25 +00:00
parent f99dcd6d15
commit 3600fd320f
3 changed files with 60 additions and 37 deletions

View File

@ -7,7 +7,7 @@
*
*
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/nodes/readfuncs.c,v 1.30 1998/06/15 19:28:33 momjian Exp $
* $Header: /cvsroot/pgsql/src/backend/nodes/readfuncs.c,v 1.31 1998/07/14 01:45:24 momjian Exp $
*
* NOTES
* Most of the read functions for plan nodes are tested. (In fact, they
@ -716,7 +716,7 @@ _readResdom()
else
{
local_node->resname = (char *) palloc(length + 1);
StrNCpy(local_node->resname, token, length + 1);
StrNCpy(local_node->resname, token+1, length + 1 - 2);/* strip quotes */
}
token = lsptok(NULL, &length); /* eat :reskey */