summaryrefslogtreecommitdiff
path: root/sql/unireg.cc
diff options
context:
space:
mode:
authormonty@hundin.mysql.fi <>2002-02-13 22:01:43 +0200
committermonty@hundin.mysql.fi <>2002-02-13 22:01:43 +0200
commitd0fc67f4ac2e85ce411cf27cc56b9d215095fc17 (patch)
tree0dad0f3d7f65ba47999d6957ce1df0862b0fc2ad /sql/unireg.cc
parent3c18798a7fee6b00d5f16bd56cc74a42aa754fde (diff)
downloadmariadb-git-d0fc67f4ac2e85ce411cf27cc56b9d215095fc17.tar.gz
Use NAMES_SEP_CHAR also for enums (Fix for supportwizard)
Diffstat (limited to 'sql/unireg.cc')
-rw-r--r--sql/unireg.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/sql/unireg.cc b/sql/unireg.cc
index 0bfc462f01a..f7b040adebe 100644
--- a/sql/unireg.cc
+++ b/sql/unireg.cc
@@ -486,11 +486,11 @@ static bool pack_fields(File file,List<create_field> &create_fields)
if (field->interval_id > int_count)
{
int_count=field->interval_id;
- tmp.append('\377');
+ tmp.append(NAMES_SEP_CHAR);
for (const char **pos=field->interval->type_names ; *pos ; pos++)
{
tmp.append(*pos);
- tmp.append('\377');
+ tmp.append(NAMES_SEP_CHAR);
}
tmp.append('\0'); // End of intervall
}