diff options
Diffstat (limited to 'sql/table.cc')
-rw-r--r-- | sql/table.cc | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/sql/table.cc b/sql/table.cc index 1305ed9cc24..ba38194afc0 100644 --- a/sql/table.cc +++ b/sql/table.cc @@ -471,17 +471,6 @@ int openfrm(THD *thd, const char *name, const char *alias, uint db_stat, { char *val= (char*) interval->type_names[count]; interval->type_lengths[count]= strlen(val); - /* - Replace all ',' symbols with NAMES_SEP_CHAR. - See the comment in unireg.cc, pack_fields() function - for details. - */ - for (uint cnt= 0 ; cnt < interval->type_lengths[count] ; cnt++) - { - char c= val[cnt]; - if (c == ',') - val[cnt]= NAMES_SEP_CHAR; - } } interval->type_lengths[count]= 0; } |