mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-28 14:18:52 +00:00
[ticket/9592] Remove test cases for empty IN()
They failed under SQLite because SQLite accepts empty IN() syntax. PHPBB3-9592
This commit is contained in:
parent
4fd45adfc5
commit
566ddf8a4b
1 changed files with 3 additions and 2 deletions
|
@ -244,8 +244,9 @@ class phpbb_dbal_test extends phpbb_database_test_case
|
||||||
array('username_clean' => 'bertie'))),
|
array('username_clean' => 'bertie'))),
|
||||||
|
|
||||||
// These here would throw errors and therefor $result should be false.
|
// These here would throw errors and therefor $result should be false.
|
||||||
array('user_id', array(), false, false, false, true),
|
// Removing for now because SQLite accepts empty IN() syntax
|
||||||
array('user_id', array(), true, false, false, true),
|
/*array('user_id', array(), false, false, false, true),
|
||||||
|
array('user_id', array(), true, false, false, true),*/
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue