1
0
mirror of https://github.com/postgres/postgres.git synced 2025-06-13 07:41:39 +03:00

Fix a bug introduced in 7.2.

This commit is contained in:
Hiroshi Inoue
2002-08-29 23:39:05 +00:00
parent 40f2eec503
commit 82ccb420d5

View File

@ -8,7 +8,7 @@
* *
* *
* IDENTIFICATION * IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/tcop/postgres.c,v 1.285 2002/08/29 07:22:23 ishii Exp $ * $Header: /cvsroot/pgsql/src/backend/tcop/postgres.c,v 1.286 2002/08/29 23:39:05 inoue Exp $
* *
* NOTES * NOTES
* this is the "main" module of the postgres backend and * this is the "main" module of the postgres backend and
@ -751,7 +751,7 @@ pg_exec_query_string(StringInfo query_string, /* string to execute */
{ {
elog(DEBUG2, "ProcessQuery"); elog(DEBUG2, "ProcessQuery");
if (querytree->originalQuery) if (querytree->originalQuery || length(querytree_list) == 1)
{ {
/* original stmt can override default tag string */ /* original stmt can override default tag string */
ProcessQuery(querytree, plan, dest, completionTag); ProcessQuery(querytree, plan, dest, completionTag);
@ -1664,7 +1664,7 @@ PostgresMain(int argc, char *argv[], const char *username)
if (!IsUnderPostmaster) if (!IsUnderPostmaster)
{ {
puts("\nPOSTGRES backend interactive interface "); puts("\nPOSTGRES backend interactive interface ");
puts("$Revision: 1.285 $ $Date: 2002/08/29 07:22:23 $\n"); puts("$Revision: 1.286 $ $Date: 2002/08/29 23:39:05 $\n");
} }
/* /*