Bug #3979 Restore not working with accents.
Submitted: 3 Jun 2004 7:03 Modified: 14 Feb 2005 23:54
Reporter: Jorge del Conde Email Updates:
Status: Closed Impact on me:
None 
Category:MySQL Administrator Severity:S1 (Critical)
Version:1.1.5 OS:Windows (WinXP)
Assigned to: Bugs System CPU Architecture:Any

[3 Jun 2004 7:03] Jorge del Conde
Description:
Restore backup works incorrectly when data with accents are used.

How to repeat:
mysql> show databases;
+----------+
| Database |
+----------+
| caña     |
| mysql    |
| test     |
+----------+
3 rows in set (0.01 sec)

mysql> use caña;
Database changed
mysql> show tables;

+----------------+
| Tables_in_caña |
+----------------+
| camión         |
+----------------+
1 row in set (0.00 sec)

mysql> select * from `camión`;
+---------+
| a       |
+---------+
| ácéñtós |
| áéíóúñ  |
+---------+
2 rows in set (0.00 sec)

mysql> drop table `camión`;
Query OK, 0 rows affected (0.00 sec)

after Administrator restore:

mysql> select * from `camión`;
+---------+
| a       |
+---------+
| ác?ñtós |
| á?íóúñ  |
+---------+
2 rows in set (0.00 sec)

Suggested fix:
Make accents work correctly.
[23 Jun 2004 17:26] Ulrich Bayer
Jorge, please try it again with 1.0.5. This bug should not happen with 1.0.5.
I have had no problems backing up and restoring german text.
[14 Feb 2005 22:54] Bugs System
No feedback was provided for this bug for over a month, so it is
being suspended automatically. If you are able to provide the
information that was originally requested, please do so and change
the status of the bug back to "Open".
[14 Feb 2005 23:51] Jorge del Conde
I just checked if this bug still happened, and using 1.1.5, i get the same results as in 1.0.3