summaryrefslogtreecommitdiff
path: root/src/interfaces/ecpg/ecpglib/extern.h
diff options
context:
space:
mode:
authorMichael Meskes2015-08-13 11:22:29 +0000
committerMichael Meskes2015-08-13 11:23:58 +0000
commitc396f2b83dbf2af9a6b3fa137f73017f5dcf7266 (patch)
tree11b84eb81c7459d77addb394b8ef1962895d2a2d /src/interfaces/ecpg/ecpglib/extern.h
parentfcbf455842eac10c331a866f559bb3875bcb8c37 (diff)
Fix declaration of isarray variable.
Found and fixed by Andres Freund.
Diffstat (limited to 'src/interfaces/ecpg/ecpglib/extern.h')
-rw-r--r--src/interfaces/ecpg/ecpglib/extern.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/interfaces/ecpg/ecpglib/extern.h b/src/interfaces/ecpg/ecpglib/extern.h
index 1fa21fd84ac..263e0014fde 100644
--- a/src/interfaces/ecpg/ecpglib/extern.h
+++ b/src/interfaces/ecpg/ecpglib/extern.h
@@ -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 */