1
0
mirror of https://github.com/postgres/postgres.git synced 2025-09-02 04:21:28 +03:00

- Fixed DEALLOCATE PREPARE to use correct function call

- Made sure connect statement does not accept single char variable,
  but only strings.
This commit is contained in:
Michael Meskes
2004-05-21 13:50:12 +00:00
parent 0a19fb42c2
commit 79c3bf4984
3 changed files with 37 additions and 35 deletions

View File

@@ -1,4 +1,4 @@
/* $PostgreSQL: pgsql/src/interfaces/ecpg/ecpglib/prepare.c,v 1.11 2004/01/28 09:52:14 meskes Exp $ */
/* $PostgreSQL: pgsql/src/interfaces/ecpg/ecpglib/prepare.c,v 1.12 2004/05/21 13:50:12 meskes Exp $ */
#define POSTGRES_ECPG_INTERNAL
#include "postgres_fe.h"
@@ -116,7 +116,7 @@ ECPGdeallocate(int lineno, int c, char *name)
{
/*
* Just ignore all errors since we do not know the list of cursors
* we are allowed to free. We have to trust that the software.
* we are allowed to free. We have to trust the software.
*/
return true;
}