Skip to content
Snippets Groups Projects
Commit 7540af49 authored by Thomas G. Lockhart's avatar Thomas G. Lockhart
Browse files

Move debugging printout of the query tree to print for all cases.

 Formerly came just after early exit from loop for command nodes,
 so missed some cases.
parent c8b3d5d3
No related branches found
No related tags found
No related merge requests found
...@@ -7,7 +7,7 @@ ...@@ -7,7 +7,7 @@
* *
* *
* IDENTIFICATION * IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/tcop/postgres.c,v 1.83 1998/08/24 01:38:02 momjian Exp $ * $Header: /cvsroot/pgsql/src/backend/tcop/postgres.c,v 1.84 1998/08/25 15:00:17 thomas Exp $
* *
* NOTES * NOTES
* this is the "main" module of the postgres backend and * this is the "main" module of the postgres backend and
...@@ -427,6 +427,12 @@ pg_parse_and_plan(char *query_string, /* string to execute */ ...@@ -427,6 +427,12 @@ pg_parse_and_plan(char *query_string, /* string to execute */
querytree = querytree_list->qtrees[i]; querytree = querytree_list->qtrees[i];
if (DebugPrintQuery == true)
{
printf("\n---- \tquery is:\n%s\n", query_string);
printf("\n");
fflush(stdout);
}
/* don't rewrite utilites */ /* don't rewrite utilites */
if (querytree->commandType == CMD_UTILITY) if (querytree->commandType == CMD_UTILITY)
...@@ -435,13 +441,6 @@ pg_parse_and_plan(char *query_string, /* string to execute */ ...@@ -435,13 +441,6 @@ pg_parse_and_plan(char *query_string, /* string to execute */
continue; continue;
} }
if (DebugPrintQuery == true)
{
printf("\n---- \tquery is:\n%s\n", query_string);
printf("\n");
fflush(stdout);
}
if (DebugPrintParse == true) if (DebugPrintParse == true)
{ {
printf("\n---- \tparser outputs :\n"); printf("\n---- \tparser outputs :\n");
...@@ -1391,7 +1390,7 @@ PostgresMain(int argc, char *argv[], int real_argc, char *real_argv[]) ...@@ -1391,7 +1390,7 @@ PostgresMain(int argc, char *argv[], int real_argc, char *real_argv[])
if (!IsUnderPostmaster) if (!IsUnderPostmaster)
{ {
puts("\nPOSTGRES backend interactive interface"); puts("\nPOSTGRES backend interactive interface");
puts("$Revision: 1.83 $ $Date: 1998/08/24 01:38:02 $"); puts("$Revision: 1.84 $ $Date: 1998/08/25 15:00:17 $");
} }
/* ---------------- /* ----------------
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment