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 ae6c510 commit ecdb457Copy full SHA for ecdb457
ext/pdo_mysql/tests/bug75177.phpt
@@ -16,9 +16,7 @@ $pdo = MySQLPDOTest::factory();
16
$tbl = "test";
17
$pdo->query("DROP TABLE IF EXISTS test_75177");
18
$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)");
+$pdo->query("INSERT INTO test_75177 (`bit`) VALUES (1), (0b011), (0b01100)");
22
23
$pdo->setAttribute(PDO::ATTR_EMULATE_PREPARES, true);
24
$ret = $pdo->query("SELECT * FROM test_75177")->fetchAll();
0 commit comments