summaryrefslogtreecommitdiff
path: root/innobase
diff options
context:
space:
mode:
authorunknown <aivanov@mysql.com>2006-05-04 00:32:34 +0400
committerunknown <aivanov@mysql.com>2006-05-04 00:32:34 +0400
commit861b68def4bf4a5d477363027a448d906f7bf9a9 (patch)
tree535fd4d65b2798e6e8e109468e30b444c95da587 /innobase
parent34fdbcbf3fb795aa1aa54f8d7496f2a34690804d (diff)
downloadmariadb-git-861b68def4bf4a5d477363027a448d906f7bf9a9.tar.gz
Applied innodb-5.0-ss521 snapshot.
Fixed BUG#19366: "consistent_snapshot.test fails". innobase/include/dict0dict.ic: Applied innodb-5.0-ss521 snapshot. Remove too strict assertions from some dict_table_t accessor functions (bug #19366).
Diffstat (limited to 'innobase')
-rw-r--r--innobase/include/dict0dict.ic2
1 files changed, 0 insertions, 2 deletions
diff --git a/innobase/include/dict0dict.ic b/innobase/include/dict0dict.ic
index 928a693f860..861da5d057a 100644
--- a/innobase/include/dict0dict.ic
+++ b/innobase/include/dict0dict.ic
@@ -92,7 +92,6 @@ dict_table_get_n_user_cols(
{
ut_ad(table);
ut_ad(table->magic_n == DICT_TABLE_MAGIC_N);
- ut_ad(table->cached);
return(table->n_cols - DATA_N_SYS_COLS);
}
@@ -126,7 +125,6 @@ dict_table_get_n_cols(
{
ut_ad(table);
ut_ad(table->magic_n == DICT_TABLE_MAGIC_N);
- ut_ad(table->cached);
return(table->n_cols);
}