mirror of
https://github.com/MariaDB/server.git
synced 2025-07-29 05:21:33 +03:00
Backporting test for Bug#158 ENUM and SET types does not accept valid cp1251 character
This commit is contained in:
@ -47,4 +47,14 @@ insert into t1 (a) values ('air'),
|
||||
select * from t1 where a like 'we_%';
|
||||
drop table t1;
|
||||
|
||||
#
|
||||
# Bug#158 ENUM and SET types does not accept valid cp1251 character
|
||||
#
|
||||
CREATE TABLE t1 (
|
||||
e1 enum('<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>'),
|
||||
e2 enum('<27><><EFBFBD><EFBFBD><EFBFBD>')
|
||||
) ENGINE=MYISAM character set cp1251;
|
||||
SHOW CREATE TABLE t1;
|
||||
DROP TABLE t1;
|
||||
|
||||
# End of 4.1 tests
|
||||
|
Reference in New Issue
Block a user