diff options
author | Michael Meskes <meskes@postgresql.org> | 2015-08-13 13:22:29 +0200 |
---|---|---|
committer | Michael Meskes <meskes@postgresql.org> | 2015-08-13 13:25:27 +0200 |
commit | 83fd92290a4144db0963614e21c60a74d49abeb9 (patch) | |
tree | 3e27bc5ebd4084449e7e420b097f09815c2cd642 /src/interfaces/ecpg/ecpglib/execute.c | |
parent | 8cd3a7adabcd1837a1aca80f11257ef11589630f (diff) | |
download | postgresql-83fd92290a4144db0963614e21c60a74d49abeb9.tar.gz postgresql-83fd92290a4144db0963614e21c60a74d49abeb9.zip |
Fix declaration of isarray variable.
Found and fixed by Andres Freund.
Diffstat (limited to 'src/interfaces/ecpg/ecpglib/execute.c')
-rw-r--r-- | src/interfaces/ecpg/ecpglib/execute.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/interfaces/ecpg/ecpglib/execute.c b/src/interfaces/ecpg/ecpglib/execute.c index 6b54d75814f..eaf62d1e5ae 100644 --- a/src/interfaces/ecpg/ecpglib/execute.c +++ b/src/interfaces/ecpg/ecpglib/execute.c @@ -146,7 +146,7 @@ next_insert(char *text, int pos, bool questionmarks) } static bool -ecpg_type_infocache_push(struct ECPGtype_information_cache ** cache, int oid, bool isarray, int lineno) +ecpg_type_infocache_push(struct ECPGtype_information_cache ** cache, int oid, enum ARRAY_TYPE isarray, int lineno) { struct ECPGtype_information_cache *new_entry = (struct ECPGtype_information_cache *) ecpg_alloc(sizeof(struct ECPGtype_information_cache), lineno); |