We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5327fa9 commit 5a7ae0cCopy full SHA for 5a7ae0c
ext/pdo/php_pdo_driver.h
@@ -468,9 +468,12 @@ struct _pdo_dbh_t {
468
/* bitmap for pdo_param_event(s) to skip in dispatch_param_event */
469
unsigned skip_param_evt:7;
470
471
+ /* defaults for fetches */
472
+ unsigned default_fetch_type:9;
473
+
474
/* the sum of the number of bits here and the bit fields preceding should
475
* equal 32 */
- unsigned _reserved_flags:14;
476
+ unsigned _reserved_flags:5;
477
478
/* data source string used to open this handle */
479
const char *data_source;
@@ -503,9 +506,6 @@ struct _pdo_dbh_t {
503
506
* when PDO::query() fails */
504
507
pdo_stmt_t *query_stmt;
505
508
zval query_stmt_zval;
-
- /* defaults for fetches */
- enum pdo_fetch_type default_fetch_type;
509
};
510
511
/* represents a connection to a database */
0 commit comments