~stewart/drizzle/embedded-innodb-create-select-transaction-arrgh

« back to all changes in this revision

Viewing changes to mysql-test/r/ctype_hebrew.result

  • Committer: brian
  • Date: 2008-06-25 05:29:13 UTC
  • Revision ID: brian@localhost.localdomain-20080625052913-6upwo0jsrl4lnapl
clean slate

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
DROP TABLE IF EXISTS t1;
 
2
SET NAMES hebrew;
 
3
CREATE TABLE t1 (a char(1)) DEFAULT CHARSET=hebrew;
 
4
INSERT INTO t1 VALUES (0xFD),(0xFE);
 
5
ALTER TABLE t1 CONVERT TO CHARACTER SET utf8;
 
6
SELECT HEX(a) FROM t1;
 
7
HEX(a)
 
8
E2808E
 
9
E2808F
 
10
DROP TABLE t1;
 
11
End of 4.1 tests