]> granicus.if.org Git - postgresql/commitdiff
Fix declaration of isarray variable.
authorMichael Meskes <meskes@postgresql.org>
Thu, 13 Aug 2015 11:22:29 +0000 (13:22 +0200)
committerMichael Meskes <meskes@postgresql.org>
Thu, 13 Aug 2015 11:23:58 +0000 (13:23 +0200)
Found and fixed by Andres Freund.

src/interfaces/ecpg/ecpglib/execute.c
src/interfaces/ecpg/ecpglib/extern.h

index 9a56a5cd4acaeb88e2e7c3c06376e6f40a82ad01..9e40f4161a5923b1912b4934d8e037b435eeb8e1 100644 (file)
@@ -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);
index 1fa21fd84ace46ce2278e64f9bc47eaddd1263ac..263e0014fde93f4364b31a37915258dd542be510 100644 (file)
@@ -44,7 +44,7 @@ struct ECPGtype_information_cache
 {
        struct ECPGtype_information_cache *next;
        int                     oid;
-       bool            isarray;
+       enum ARRAY_TYPE isarray;
 };
 
 /* structure to store one statement */