diff options
author | Edin Kadribasic <edink@php.net> | 2005-01-23 10:57:11 +0000 |
---|---|---|
committer | Edin Kadribasic <edink@php.net> | 2005-01-23 10:57:11 +0000 |
commit | d8aa131ca088ef9b68e62547f44c3d20355366bd (patch) | |
tree | ea9995bd70926cb46372ed2e38de38a655717066 /ext/pdo_pgsql/php_pdo_pgsql_int.h | |
parent | 8839b8b3ecfe0120b838aefc4dcf19f87fe9a3ec (diff) | |
download | php-git-d8aa131ca088ef9b68e62547f44c3d20355366bd.tar.gz |
Store pgsql_type, intval and boolav per column
Diffstat (limited to 'ext/pdo_pgsql/php_pdo_pgsql_int.h')
-rw-r--r-- | ext/pdo_pgsql/php_pdo_pgsql_int.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/ext/pdo_pgsql/php_pdo_pgsql_int.h b/ext/pdo_pgsql/php_pdo_pgsql_int.h index 00a6e0d3b7..ee3e290f83 100644 --- a/ext/pdo_pgsql/php_pdo_pgsql_int.h +++ b/ext/pdo_pgsql/php_pdo_pgsql_int.h @@ -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 { |