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

@ -299,7 +299,7 @@ class mssql_sql_generator extends sql_generator {
$fieldname = $xmldb_field->getName();
/// Take a look to field metadata
$meta = $this->mdb->get_columns($tablename, false);
$meta = $this->mdb->get_columns($tablename);
$metac = $meta[$fieldname];
$oldmetatype = $metac->meta_type;