summaryrefslogtreecommitdiff
path: root/storage/innobase/dict/dict0mem.cc
diff options
context:
space:
mode:
authorMarko Mäkelä <marko.makela@mariadb.com>2018-11-05 12:15:17 +0200
committerMarko Mäkelä <marko.makela@mariadb.com>2018-11-05 12:15:17 +0200
commitd63e19806108efc1ca8d533841ad2471f2e0c4fe (patch)
treee7f63499d0768e3af50b5c576048adbd84f4786f /storage/innobase/dict/dict0mem.cc
parent6472c5c015a174ffd680fddc8f20c7a94684a552 (diff)
parent03977e8273cbd33c3cbfec191ceee856f973ce1a (diff)
downloadmariadb-git-d63e19806108efc1ca8d533841ad2471f2e0c4fe.tar.gz
Merge 10.0 into 10.1
Diffstat (limited to 'storage/innobase/dict/dict0mem.cc')
-rw-r--r--storage/innobase/dict/dict0mem.cc4
1 files changed, 1 insertions, 3 deletions
diff --git a/storage/innobase/dict/dict0mem.cc b/storage/innobase/dict/dict0mem.cc
index dd8155c09eb..c67e581621e 100644
--- a/storage/innobase/dict/dict0mem.cc
+++ b/storage/innobase/dict/dict0mem.cc
@@ -498,9 +498,7 @@ dict_mem_table_col_rename(
s += len + 1;
}
- /* This could fail if the data dictionaries are out of sync.
- Proceed with the renaming anyway. */
- ut_ad(!strcmp(from, s));
+ ut_ad(!my_strcasecmp(system_charset_info, from, s));
dict_mem_table_col_rename_low(table, nth_col, to, s);
}