Store pgsql_type, intval and boolav per column

This commit is contained in:
Edin Kadribasic 2005-01-23 10:57:11 +00:00
parent 8839b8b3ec
commit d8aa131ca0
2 changed files with 11 additions and 9 deletions

View file

@ -42,7 +42,10 @@ typedef struct {
} pdo_pgsql_db_handle;
typedef struct {
char *def;
char *def;
Oid pgsql_type;
long intval;
zend_bool boolval;
} pdo_pgsql_column;
typedef struct {