mirror of
https://github.com/phpbb/phpbb.git
synced 2025-04-20 07:42:09 +02:00
[ticket/10907] Mark (var)binary tests as incomplete on non-MySQL DBMSes.
PHPBB3-10907
This commit is contained in:
parent
5d5049710c
commit
bad91d8e74
@ -165,6 +165,11 @@ class phpbb_dbal_db_tools_test extends phpbb_database_test_case
|
||||
*/
|
||||
public function test_created_column($column_name, $column_value)
|
||||
{
|
||||
if ($column_name === 'c_varbinary' && stripos(get_class($this->db), 'mysql') === false)
|
||||
{
|
||||
$this->markTestIncomplete('Binary handling is not implemented properly on non-MySQL DBMSes.');
|
||||
}
|
||||
|
||||
$row_insert = self::get_default_values();
|
||||
$row_insert[$column_name] = $column_value;
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user