Skip to content

Commit 3464929

Browse files
committed
Merge branch 'PHP-7.3' into PHP-7.4
* PHP-7.3: Fix #77944: Wrong meta pdo_type for bigint on LLP64
2 parents 2371c65 + e561d41 commit 3464929

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ext/pdo_mysql/mysql_statement.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -874,7 +874,7 @@ static int pdo_mysql_stmt_col_meta(pdo_stmt_t *stmt, zend_long colno, zval *retu
874874
case MYSQL_TYPE_SHORT:
875875
case MYSQL_TYPE_INT24:
876876
case MYSQL_TYPE_LONG:
877-
#if SIZEOF_LONG==8
877+
#if SIZEOF_ZEND_LONG==8
878878
case MYSQL_TYPE_LONGLONG:
879879
#endif
880880
add_assoc_long(return_value, "pdo_type", PDO_PARAM_INT);

0 commit comments

Comments
 (0)