Skip to content

Commit 57d69b5

Browse files
committed
Don't use explicitly nullable column in bug_73234.phpt
Firebird doesn't support this. It is nullable by default. The test still fails, but now for a legitimate reason...
1 parent b4ffe54 commit 57d69b5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ext/pdo/tests/bug_73234.phpt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ require_once getenv('REDIR_TEST_DIR') . 'pdo_test.inc';
1515

1616
$db = PDOTest::factory();
1717
$db->setAttribute(PDO::ATTR_EMULATE_PREPARES, true);
18-
$db->exec('CREATE TABLE test(id INT NULL)');
18+
$db->exec('CREATE TABLE test(id INT)');
1919

2020
$stmt = $db->prepare('INSERT INTO test VALUES(:value)');
2121

0 commit comments

Comments
 (0)