diff options
author | Michael Meskes <meskes@postgresql.org> | 2000-09-20 13:25:52 +0000 |
---|---|---|
committer | Michael Meskes <meskes@postgresql.org> | 2000-09-20 13:25:52 +0000 |
commit | 339a5bbfb17ecd171ebe076c5bf016c4e66e2c0a (patch) | |
tree | 38eaaf78de93e0d5b7e729bb52f2301c472dfd83 /src/interfaces/ecpg/lib/extern.h | |
parent | 95563e7bbf597bb69a273d7cfbe664f1796391b6 (diff) |
*** empty log message ***
Diffstat (limited to 'src/interfaces/ecpg/lib/extern.h')
-rw-r--r-- | src/interfaces/ecpg/lib/extern.h | 16 |
1 files changed, 14 insertions, 2 deletions
diff --git a/src/interfaces/ecpg/lib/extern.h b/src/interfaces/ecpg/lib/extern.h index db2f3a7d419..780fc933bb8 100644 --- a/src/interfaces/ecpg/lib/extern.h +++ b/src/interfaces/ecpg/lib/extern.h @@ -21,6 +21,17 @@ struct ECPGgeneric_varchar char arr[1]; }; +/* + * type information cache + */ + +struct ECPGtype_information_cache +{ + struct ECPGtype_information_cache *next; + int oid; + bool isarray; +}; + /* structure to store one statement */ struct statement { @@ -36,7 +47,8 @@ struct connection { char *name; PGconn *connection; - bool committed; - int autocommit; + bool committed; + int autocommit; + struct ECPGtype_information_cache *cache_head; struct connection *next; }; |