Skip to content

Commit ecdb457

Browse files
https://github.com/php/php-src/pull/11879#discussion_r1352345791
1 parent ae6c510 commit ecdb457

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

ext/pdo_mysql/tests/bug75177.phpt

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,7 @@ $pdo = MySQLPDOTest::factory();
1616
$tbl = "test";
1717
$pdo->query("DROP TABLE IF EXISTS test_75177");
1818
$pdo->query("CREATE TABLE test_75177 (`bit` bit(8)) ENGINE=InnoDB");
19-
$pdo->query("INSERT INTO test_75177 (`bit`) VALUES (1)");
20-
$pdo->query("INSERT INTO test_75177 (`bit`) VALUES (0b011)");
21-
$pdo->query("INSERT INTO test_75177 (`bit`) VALUES (0b01100)");
19+
$pdo->query("INSERT INTO test_75177 (`bit`) VALUES (1), (0b011), (0b01100)");
2220

2321
$pdo->setAttribute(PDO::ATTR_EMULATE_PREPARES, true);
2422
$ret = $pdo->query("SELECT * FROM test_75177")->fetchAll();

0 commit comments

Comments
 (0)