]> granicus.if.org Git - php/commitdiff
Don't use explicitly nullable column in bug_73234.phpt
authorNikita Popov <nikita.ppv@gmail.com>
Tue, 22 Dec 2020 09:34:54 +0000 (10:34 +0100)
committerNikita Popov <nikita.ppv@gmail.com>
Tue, 22 Dec 2020 09:34:54 +0000 (10:34 +0100)
Firebird doesn't support this. It is nullable by default.

The test still fails, but now for a legitimate reason...

ext/pdo/tests/bug_73234.phpt

index 451cc4849c42aca2bd6c26ce476c7065ec78c535..7e708d7424ee9f56b837d179c34537189fdea687 100644 (file)
@@ -15,7 +15,7 @@ require_once getenv('REDIR_TEST_DIR') . 'pdo_test.inc';
 
 $db = PDOTest::factory();
 $db->setAttribute(PDO::ATTR_EMULATE_PREPARES, true);
-$db->exec('CREATE TABLE test(id INT NULL)');
+$db->exec('CREATE TABLE test(id INT)');
 
 $stmt = $db->prepare('INSERT INTO test VALUES(:value)');