diff options
author | monty@hundin.mysql.fi <> | 2002-02-13 22:01:43 +0200 |
---|---|---|
committer | monty@hundin.mysql.fi <> | 2002-02-13 22:01:43 +0200 |
commit | d0fc67f4ac2e85ce411cf27cc56b9d215095fc17 (patch) | |
tree | 0dad0f3d7f65ba47999d6957ce1df0862b0fc2ad /sql/unireg.cc | |
parent | 3c18798a7fee6b00d5f16bd56cc74a42aa754fde (diff) | |
download | mariadb-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.cc | 4 |
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 } |