Merge branch 'MDL-39725_analyze' of https://github.com/mr-russ/moodle

Conflicts:
	lib/dml/moodle_database.php
This commit is contained in:
Sam Hemelryk 2013-12-17 09:31:19 +13:00
commit 9d771f9529
5 changed files with 48 additions and 4 deletions

View file

@ -2172,6 +2172,15 @@ abstract class moodle_database {
}
}
/**
* Analyze the data in temporary tables to force statistics collection after bulk data loads.
*
* @return void
*/
public function update_temp_table_stats() {
$this->temptables->update_stats();
}
/**
* Checks and returns true if transactions are supported.
*