| Current Path : /usr/share/mysql-test/t/ |
| Current File : //usr/share/mysql-test/t/ctype_hebrew.test |
# # BUG #24037: Lossy Hebrew to Unicode conversion # # Test if LRM and RLM characters are correctly converted to UTF-8 --disable_warnings DROP TABLE IF EXISTS t1; --enable_warnings SET NAMES hebrew; CREATE TABLE t1 (a char(1)) DEFAULT CHARSET=hebrew; INSERT INTO t1 VALUES (0xFD),(0xFE); ALTER TABLE t1 CONVERT TO CHARACTER SET utf8; SELECT HEX(a) FROM t1; DROP TABLE t1; --echo End of 4.1 tests