mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-08 04:18:52 +00:00
[ticket/10907] Mark (var)binary tests as incomplete on non-MySQL DBMSes.
PHPBB3-10907
This commit is contained in:
parent
5d5049710c
commit
bad91d8e74
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)
|
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 = self::get_default_values();
|
||||||
$row_insert[$column_name] = $column_value;
|
$row_insert[$column_name] = $column_value;
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue