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:02 +0200 |
commit | edebddbb845575206d07145af2d718609b01f6ad (patch) | |
tree | 4199af3285b2e673d54ce08d0624acabdfb6f799 /src/interfaces/ecpg/ecpglib/extern.h | |
parent | 652ca927ca4d9553691b9c6385111bea353070d8 (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.h | 2 |
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 */ |