mirror of https://github.com/postgres/postgres
Fix a bug introduced in 7.2.
This commit is contained in:
parent
40f2eec503
commit
82ccb420d5
|
@ -8,7 +8,7 @@
|
|||
*
|
||||
*
|
||||
* 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
|
||||
* 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");
|
||||
|
||||
if (querytree->originalQuery)
|
||||
if (querytree->originalQuery || length(querytree_list) == 1)
|
||||
{
|
||||
/* original stmt can override default tag string */
|
||||
ProcessQuery(querytree, plan, dest, completionTag);
|
||||
|
@ -1664,7 +1664,7 @@ PostgresMain(int argc, char *argv[], const char *username)
|
|||
if (!IsUnderPostmaster)
|
||||
{
|
||||
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");
|
||||
}
|
||||
|
||||
/*
|
||||
|
|
Loading…
Reference in New Issue