diff options
author | Michael Meskes <meskes@postgresql.org> | 2010-01-15 10:44:39 +0000 |
---|---|---|
committer | Michael Meskes <meskes@postgresql.org> | 2010-01-15 10:44:39 +0000 |
commit | bf69b535c028543194997f520bf7761f93166636 (patch) | |
tree | b6a31958e5f06f6a055c5c17f7e2905e609802a5 /src/interfaces/ecpg/include/ecpglib.h | |
parent | 40f908bdcdc726fc11912cd95dfd2f89603d1f37 (diff) | |
download | postgresql-bf69b535c028543194997f520bf7761f93166636.tar.gz postgresql-bf69b535c028543194997f520bf7761f93166636.zip |
Applied patch by Boszormenyi Zoltan <zb@cybertec.at> to add DESCRIBE [OUTPUT] statement to ecpg.
Diffstat (limited to 'src/interfaces/ecpg/include/ecpglib.h')
-rw-r--r-- | src/interfaces/ecpg/include/ecpglib.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/interfaces/ecpg/include/ecpglib.h b/src/interfaces/ecpg/include/ecpglib.h index bbb81783051..f301de986ad 100644 --- a/src/interfaces/ecpg/include/ecpglib.h +++ b/src/interfaces/ecpg/include/ecpglib.h @@ -1,7 +1,7 @@ /* * this is a small part of c.h since we don't want to leak all postgres * definitions into ecpg programs - * $PostgreSQL: pgsql/src/interfaces/ecpg/include/ecpglib.h,v 1.80 2009/09/18 13:13:32 meskes Exp $ + * $PostgreSQL: pgsql/src/interfaces/ecpg/include/ecpglib.h,v 1.81 2010/01/15 10:44:36 meskes Exp $ */ #ifndef _ECPGLIB_H @@ -83,7 +83,7 @@ bool ECPGset_desc(int, const char *, int,...); void ECPGset_noind_null(enum ECPGttype, void *); bool ECPGis_noind_null(enum ECPGttype, void *); -bool ECPGdescribe(int, bool, const char *,...); +bool ECPGdescribe(int, int, bool, const char *, const char *, ...); /* dynamic result allocation */ void ECPGfree_auto_mem(void); |