Bug #27696 Tables with non-ASCII names can't be created
Submitted: 7 Apr 2007 12:40
Reporter: Hakan Küçükyılmaz Email Updates:
Status: Closed Impact on me:
None 
Category:MySQL Server: Falcon storage engine Severity:S3 (Non-critical)
Version: OS:Any
Assigned to: CPU Architecture:Any

[7 Apr 2007 12:40] Hakan Küçükyılmaz
Description:
I expected some trouble with Asian (Chinese/Japanese/Korean)
names, but getting errors with alphabets is less acceptable.
MySQL should allow pretty well any name, but possibly this
will be another bug that disappears automatically when/if a
merge to version 5.1 takes place.

How to repeat:
mysql> set names utf8;
mysql> create table ı (ı int) engine = jstar;
ERROR 1005 (HY000): Can't create table './jstar2/i.frm' (errno: 156)

mysql> create table ı (ı int) engine = myisam;
Query OK, 0 rows affected (0.00 sec)

Suggested fix:
Fixed with change set jas:1.2194.
[14 May 2007 16:51] Hakan Küçükyılmaz
test case is falcon_bug_27696