mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-28 06:08:52 +00:00
Merge remote-tracking branch 'github-bantu/ticket/10907' into develop-olympus
By Andreas Fischer via Andreas Fischer * github-bantu/ticket/10907: [ticket/10907] Mark (var)binary tests as incomplete on non-MySQL DBMSes.
This commit is contained in:
commit
440e699bc5
1 changed files with 5 additions and 0 deletions
|
@ -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…
Add table
Reference in a new issue