We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8c9fc83 commit d6da66cCopy full SHA for d6da66c
ext/pdo/php_pdo_driver.h
@@ -577,7 +577,10 @@ struct _pdo_stmt_t {
577
* bindParam() for its prepared statements, if false, PDO should
578
* emulate prepare and bind on its behalf */
579
uint16_t supports_placeholders:2;
580
- uint16_t reserved: 12;
+
581
+ /* defaults for fetches */
582
+ uint16_t default_fetch_type:9;
583
+ uint16_t reserved:3;
584
585
/* keep track of bound input parameters. Some drivers support
586
* input/output parameters, but you can't rely on that working */
@@ -595,9 +598,6 @@ struct _pdo_stmt_t {
595
598
* */
596
599
int32_t column_count;
597
600
- /* defaults for fetches */
- enum pdo_fetch_type default_fetch_type;
-
601
union {
602
int column;
603
struct {
0 commit comments