mirror of
https://github.com/moodle/moodle.git
synced 2025-08-09 02:46:40 +02:00
MDL-14679 table/column meta cache is reset on each request and DDL operation.
No need to call it with false parameter but in very exceptional ocasions.
This commit is contained in:
parent
4735315363
commit
f713581bc3
4 changed files with 5 additions and 5 deletions
|
@ -308,7 +308,7 @@ class mysql_sql_generator extends sql_generator {
|
|||
$tablename = $xmldb_table->getName($xmldb_table);
|
||||
|
||||
/// Fetch all the columns in the table
|
||||
if (!$columns = $this->mdb->get_columns($tablename, false)) {
|
||||
if (!$columns = $this->mdb->get_columns($tablename)) {
|
||||
return array();
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue