From: Anatol Belski Date: Wed, 15 Apr 2015 14:02:15 +0000 (+0200) Subject: optimize structs X-Git-Tag: PRE_PHP7_NSAPI_REMOVAL~286 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=0c6753bf6bc84ac189d2b8edcdb123d3155bcbf4;p=php optimize structs --- diff --git a/ext/pdo_pgsql/php_pdo_pgsql_int.h b/ext/pdo_pgsql/php_pdo_pgsql_int.h index 6cad2a4702..d25cbff979 100644 --- a/ext/pdo_pgsql/php_pdo_pgsql_int.h +++ b/ext/pdo_pgsql/php_pdo_pgsql_int.h @@ -43,25 +43,24 @@ typedef struct { unsigned _reserved:31; pdo_pgsql_error_info einfo; Oid pgoid; + unsigned int stmt_counter; /* The following two variables have the same purpose. Unfortunately we need to keep track of two different attributes having the same effect. */ - int emulate_prepares; - int disable_native_prepares; /* deprecated since 5.6 */ - int disable_prepares; - unsigned int stmt_counter; + zend_bool emulate_prepares; + zend_bool disable_native_prepares; /* deprecated since 5.6 */ + zend_bool disable_prepares; } pdo_pgsql_db_handle; typedef struct { char *def; + zend_long intval; Oid pgsql_type; - zend_long intval; zend_bool boolval; } pdo_pgsql_column; typedef struct { pdo_pgsql_db_handle *H; PGresult *result; - int current_row; pdo_pgsql_column *cols; char *cursor_name; char *stmt_name; @@ -70,6 +69,7 @@ typedef struct { int *param_lengths; int *param_formats; Oid *param_types; + int current_row; zend_bool is_prepared; } pdo_pgsql_stmt;