diff options
author | Michael Meskes <meskes@postgresql.org> | 2009-05-20 16:13:18 +0000 |
---|---|---|
committer | Michael Meskes <meskes@postgresql.org> | 2009-05-20 16:13:18 +0000 |
commit | 0754b391f30e17fde9d7d14d5e0eb458fc02289a (patch) | |
tree | b24018f02474a9e5d67406ade25e297bdee4b213 /src/interfaces/ecpg/ecpglib/extern.h | |
parent | 7340793f31f3a6cee42c6d5b6dc46c05b37dfa9f (diff) |
Removed some unneeded variables and comparisons
Diffstat (limited to 'src/interfaces/ecpg/ecpglib/extern.h')
-rw-r--r-- | src/interfaces/ecpg/ecpglib/extern.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/interfaces/ecpg/ecpglib/extern.h b/src/interfaces/ecpg/ecpglib/extern.h index 41098903ec8..dab33e337b8 100644 --- a/src/interfaces/ecpg/ecpglib/extern.h +++ b/src/interfaces/ecpg/ecpglib/extern.h @@ -1,4 +1,4 @@ -/* $PostgreSQL: pgsql/src/interfaces/ecpg/ecpglib/extern.h,v 1.34 2008/02/07 11:09:12 meskes Exp $ */ +/* $PostgreSQL: pgsql/src/interfaces/ecpg/ecpglib/extern.h,v 1.35 2009/05/20 16:13:18 meskes Exp $ */ #ifndef _ECPG_LIB_EXTERN_H #define _ECPG_LIB_EXTERN_H @@ -143,10 +143,10 @@ bool ecpg_store_input(const int, const bool, const struct variable *, char **, bool ecpg_check_PQresult(PGresult *, int, PGconn *, enum COMPAT_MODE); void ecpg_raise(int line, int code, const char *sqlstate, const char *str); void ecpg_raise_backend(int line, PGresult *result, PGconn *conn, int compat); -char *ecpg_prepared(const char *, struct connection *, int); +char *ecpg_prepared(const char *, struct connection *); bool ecpg_deallocate_all_conn(int lineno, enum COMPAT_MODE c, struct connection * conn); void ecpg_log(const char *format,...); -bool ecpg_auto_prepare(int, const char *, int, const int, char **, const char *); +bool ecpg_auto_prepare(int, const char *, const int, char **, const char *); void ecpg_init_sqlca(struct sqlca_t * sqlca); /* SQLSTATE values generated or processed by ecpglib (intentionally |