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

Serialized mode works!

This commit is contained in:
Vadim B. Mikheev
1998-12-16 11:53:55 +00:00
parent 54c3e65242
commit c13a64d7fb
9 changed files with 209 additions and 47 deletions

View File

@ -7,7 +7,7 @@
*
*
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/tcop/postgres.c,v 1.94 1998/10/16 06:05:13 momjian Exp $
* $Header: /cvsroot/pgsql/src/backend/tcop/postgres.c,v 1.95 1998/12/16 11:53:52 vadim Exp $
*
* NOTES
* this is the "main" module of the postgres backend and
@ -786,9 +786,10 @@ pg_exec_query_dest(char *query_string, /* string to execute */
}
#endif
/* ----------------
SetQuerySnapshot();
/*
* execute the plan
*
*/
if (ShowExecutorStats)
ResetUsage();
@ -1519,7 +1520,7 @@ PostgresMain(int argc, char *argv[], int real_argc, char *real_argv[])
if (!IsUnderPostmaster)
{
puts("\nPOSTGRES backend interactive interface ");
puts("$Revision: 1.94 $ $Date: 1998/10/16 06:05:13 $\n");
puts("$Revision: 1.95 $ $Date: 1998/12/16 11:53:52 $\n");
}
/* ----------------