diff options
author | Michael Meskes <meskes@postgresql.org> | 2004-05-21 13:50:12 +0000 |
---|---|---|
committer | Michael Meskes <meskes@postgresql.org> | 2004-05-21 13:50:12 +0000 |
commit | 79c3bf4984e3ca8e7d2a8854ad94f6cb0b1275c8 (patch) | |
tree | f8c157a2ffa6e7ce068f7479fde66f1bae9e6cdc /src/interfaces/ecpg/ecpglib/prepare.c | |
parent | 0a19fb42c2e68dac334b173b85f2d28005fcbd8c (diff) |
- Fixed DEALLOCATE PREPARE to use correct function call
- Made sure connect statement does not accept single char variable,
but only strings.
Diffstat (limited to 'src/interfaces/ecpg/ecpglib/prepare.c')
-rw-r--r-- | src/interfaces/ecpg/ecpglib/prepare.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/interfaces/ecpg/ecpglib/prepare.c b/src/interfaces/ecpg/ecpglib/prepare.c index 9de1b9bfd8b..f850b9c8f7f 100644 --- a/src/interfaces/ecpg/ecpglib/prepare.c +++ b/src/interfaces/ecpg/ecpglib/prepare.c @@ -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; } |