1
0
mirror of https://github.com/postgres/postgres.git synced 2025-06-11 20:28:21 +03:00

AIX patch from Darren King and Univel patch from Billy Allie, mostly

related to grammar and parser issues, with one postmaster fix.
This commit is contained in:
Bruce Momjian
1998-02-01 19:43:54 +00:00
parent 44030ef229
commit 6159ba3ab1
4 changed files with 16 additions and 21 deletions

View File

@ -7,7 +7,7 @@
*
*
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/tcop/postgres.c,v 1.63 1998/01/26 01:41:35 scrappy Exp $
* $Header: /cvsroot/pgsql/src/backend/tcop/postgres.c,v 1.64 1998/02/01 19:43:46 momjian Exp $
*
* NOTES
* this is the "main" module of the postgres backend and
@ -492,7 +492,7 @@ pg_parse_and_plan(char *query_string, /* string to execute */
for (i = 0; i < querytree_list->len; i++)
{
print(querytree_list->qtrees[i]);
nodeDisplay(querytree_list->qtrees[i]);
printf("\n");
}
}
@ -1293,7 +1293,7 @@ PostgresMain(int argc, char *argv[])
if (IsUnderPostmaster == false)
{
puts("\nPOSTGRES backend interactive interface");
puts("$Revision: 1.63 $ $Date: 1998/01/26 01:41:35 $");
puts("$Revision: 1.64 $ $Date: 1998/02/01 19:43:46 $");
}
/* ----------------