Do not free prepares statements at the end of a transaction.

This commit is contained in:
Michael Meskes 2003-03-21 15:31:04 +00:00
parent 524e9d62a7
commit b8f7d3d0b6
2 changed files with 4 additions and 1 deletions

View File

@ -1368,6 +1368,7 @@ Thu Mar 20 16:53:40 CET 2003
Fri Mar 21 15:13:42 CET 2003 Fri Mar 21 15:13:42 CET 2003
- Made sure preprocessor accepts new datatypes. - Made sure preprocessor accepts new datatypes.
- Do not free prepared statements at the end of a transaction.
- Set ecpg version to 2.12.0. - Set ecpg version to 2.12.0.
- Set ecpg library to 3.4.2. - Set ecpg library to 3.4.2.
- Set pgtypes library to 1.0.0 - Set pgtypes library to 1.0.0

View File

@ -1,4 +1,4 @@
/* $Header: /cvsroot/pgsql/src/interfaces/ecpg/ecpglib/misc.c,v 1.1 2003/03/16 10:42:53 meskes Exp $ */ /* $Header: /cvsroot/pgsql/src/interfaces/ecpg/ecpglib/misc.c,v 1.2 2003/03/21 15:31:04 meskes Exp $ */
#include "postgres_fe.h" #include "postgres_fe.h"
@ -109,9 +109,11 @@ ECPGtrans(int lineno, const char *connection_name, const char *transaction)
{ {
con->committed = true; con->committed = true;
#if 0
/* deallocate all prepared statements */ /* deallocate all prepared statements */
if (!ECPGdeallocate_all(lineno)) if (!ECPGdeallocate_all(lineno))
return false; return false;
#endif
} }
return true; return true;