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:
stronk7 2009-09-28 23:16:05 +00:00
parent 4735315363
commit f713581bc3
4 changed files with 5 additions and 5 deletions

View file

@ -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();
}