diff options
Diffstat (limited to 'sql/sql_truncate.cc')
-rw-r--r-- | sql/sql_truncate.cc | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sql/sql_truncate.cc b/sql/sql_truncate.cc index daa295d768e..d4859efc7af 100644 --- a/sql/sql_truncate.cc +++ b/sql/sql_truncate.cc @@ -38,11 +38,11 @@ */ static bool fk_info_append_fields(THD *thd, String *str, - List<LEX_STRING> *fields) + List<LEX_CSTRING> *fields) { bool res= FALSE; - LEX_STRING *field; - List_iterator_fast<LEX_STRING> it(*fields); + LEX_CSTRING *field; + List_iterator_fast<LEX_CSTRING> it(*fields); while ((field= it++)) { |