diff options
author | Nikita Popov <nikita.ppv@gmail.com> | 2020-12-22 10:34:54 +0100 |
---|---|---|
committer | Nikita Popov <nikita.ppv@gmail.com> | 2020-12-22 10:34:54 +0100 |
commit | 57d69b51373bfb1aa5117022c63c93c612e707f6 (patch) | |
tree | af06319528ec63c84c558e868f1674fa1a1e6e19 | |
parent | b4ffe5417440b399c2511a8176179be2f8ef3512 (diff) | |
download | php-git-57d69b51373bfb1aa5117022c63c93c612e707f6.tar.gz |
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...
-rw-r--r-- | ext/pdo/tests/bug_73234.phpt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/pdo/tests/bug_73234.phpt b/ext/pdo/tests/bug_73234.phpt index 451cc4849c..7e708d7424 100644 --- a/ext/pdo/tests/bug_73234.phpt +++ b/ext/pdo/tests/bug_73234.phpt @@ -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)'); |