Commit b8f7d3d0 authored by Michael Meskes's avatar Michael Meskes

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

parent 524e9d62
...@@ -1368,6 +1368,7 @@ Thu Mar 20 16:53:40 CET 2003 ...@@ -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
......
/* $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) ...@@ -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;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment