mirror of
https://github.com/moodle/moodle.git
synced 2025-08-09 10:56:56 +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
|
@ -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;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue