mirror of
https://github.com/moodle/moodle.git
synced 2025-04-13 04:22:07 +02:00
MDL-46327 phpunit: Fixed oracle fail
This commit is contained in:
parent
38a5c6861e
commit
c1dc3f4793
@ -1608,6 +1608,11 @@ class core_ddl_testcase extends database_driver_testcase {
|
||||
JOIN {test_temp} t ON t.name = n.name";
|
||||
$records = $DB->get_records_sql($sql);
|
||||
$this->assertCount(1, $records);
|
||||
|
||||
// Drop temp table.
|
||||
$dbman->drop_temp_table($table2);
|
||||
$this->assertFalse($dbman->table_exists('test_temp'));
|
||||
$this->assertDebuggingCalled();
|
||||
}
|
||||
|
||||
public function test_concurrent_temp_tables() {
|
||||
|
Loading…
x
Reference in New Issue
Block a user