mirror of
https://github.com/phpbb/phpbb.git
synced 2025-08-07 01:06:48 +02:00
[ticket/15055] Try using build matrix
PHPBB3-15055
This commit is contained in:
@@ -222,6 +222,14 @@ class phpbb_database_test_connection_manager
|
||||
$this->purge_extras();
|
||||
break;
|
||||
|
||||
case 'phpbb\db\driver\mssql':
|
||||
case 'phpbb\db\driver\mssqlnative':
|
||||
$this->connect();
|
||||
// Drop all tables
|
||||
$this->pdo->exec("EXEC sp_MSforeachtable 'DROP TABLE ?'");
|
||||
$this->purge_extras();
|
||||
break;
|
||||
|
||||
default:
|
||||
$this->connect(false);
|
||||
|
||||
|
@@ -100,6 +100,11 @@ class phpbb_tests_tree_nestedset_forum_base extends phpbb_database_test_case
|
||||
}
|
||||
else
|
||||
{
|
||||
if (strpos($this->db->sql_layer, 'mssql') !== false)
|
||||
{
|
||||
$sql = 'SET IDENTITY_INSERT phpbb_forums ON';
|
||||
$this->db->sql_query($sql);
|
||||
}
|
||||
$buffer = new \phpbb\db\sql_insert_buffer($this->db, 'phpbb_forums');
|
||||
$buffer->insert_all($forums);
|
||||
$buffer->flush();
|
||||
@@ -107,6 +112,11 @@ class phpbb_tests_tree_nestedset_forum_base extends phpbb_database_test_case
|
||||
$this->database_synchronisation(array(
|
||||
'phpbb_forums' => array('forum_id'),
|
||||
));
|
||||
if (strpos($this->db->sql_layer, 'mssql') !== false)
|
||||
{
|
||||
$sql = 'SET IDENTITY_INSERT phpbb_forums OFF';
|
||||
$this->db->sql_query($sql);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user