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

Renaming cleanup, no pgindent yet.

This commit is contained in:
Bruce Momjian
1998-09-01 03:29:17 +00:00
parent 2aa080fc93
commit af74855a60
329 changed files with 4380 additions and 4388 deletions

View File

@@ -7,7 +7,7 @@
*
*
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/tcop/postgres.c,v 1.87 1998/08/30 21:05:27 scrappy Exp $
* $Header: /cvsroot/pgsql/src/backend/tcop/postgres.c,v 1.88 1998/09/01 03:25:41 momjian Exp $
*
* NOTES
* this is the "main" module of the postgres backend and
@@ -296,7 +296,7 @@ InteractiveBackend(char *inBuf)
if (EchoQuery)
printf("query: %s\n", inBuf);
return ('Q');
return 'Q';
}
/* ----------------
@@ -661,7 +661,7 @@ pg_parse_and_plan(char *query_string, /* string to execute */
if (queryListP)
*queryListP = querytree_list;
return (plan_list);
return plan_list;
}
/* ----------------------------------------------------------------
@@ -1521,7 +1521,7 @@ PostgresMain(int argc, char *argv[], int real_argc, char *real_argv[])
if (!IsUnderPostmaster)
{
puts("\nPOSTGRES backend interactive interface");
puts("$Revision: 1.87 $ $Date: 1998/08/30 21:05:27 $");
puts("$Revision: 1.88 $ $Date: 1998/09/01 03:25:41 $");
}
/* ----------------