summaryrefslogtreecommitdiff
path: root/storage/innobase/include/dict0dict.ic
diff options
context:
space:
mode:
authorJimmy Yang <jimmy.yang@oracle.com>2010-05-25 18:44:33 -0700
committerJimmy Yang <jimmy.yang@oracle.com>2010-05-25 18:44:33 -0700
commit60d4288272f540971ebc929a74118bcc1313e980 (patch)
tree54d2fd9cdef475dd2487f9d00495e5580c93e63d /storage/innobase/include/dict0dict.ic
parenta80c59c7fc8bf6b6514342609695dda8dff2035c (diff)
downloadmariadb-git-60d4288272f540971ebc929a74118bcc1313e980.tar.gz
Check in the support for Information Schema System Table Views. Users
can now view the content of InnoDB System Tables through following information schema tables: information_schema.INNODB_SYS_TABLES information_schema.INNODB_SYS_INDEXES information_schema.INNODB_SYS_COUMNS information_schema.INNODB_SYS_FIELDS information_schema.INNODB_SYS_FOREIGN information_schema.INNODB_SYS_FOREIGN_COLS information_schema.INNODB_SYS_TABLESTATS rb://330 Approved by Marko
Diffstat (limited to 'storage/innobase/include/dict0dict.ic')
-rw-r--r--storage/innobase/include/dict0dict.ic2
1 files changed, 1 insertions, 1 deletions
diff --git a/storage/innobase/include/dict0dict.ic b/storage/innobase/include/dict0dict.ic
index 46e78df8272..93c3f8d4733 100644
--- a/storage/innobase/include/dict0dict.ic
+++ b/storage/innobase/include/dict0dict.ic
@@ -765,7 +765,7 @@ dict_table_get_low(
table = dict_table_check_if_in_cache_low(table_name);
if (table == NULL) {
- table = dict_load_table(table_name);
+ table = dict_load_table(table_name, TRUE);
}
ut_ad(!table || table->cached);