summaryrefslogtreecommitdiff
path: root/mysql-test/main/innodb_utf8.result
blob: cdac7cdb65b83dcf88fcac01c04862b1e52ed105 (plain)
1
2
3
4
5
6
7
8
9
10
drop table if exists t1;
CREATE TABLE t1 (a VARCHAR(5) COLLATE utf8_unicode_ci PRIMARY KEY)
ENGINE=InnoDB;
INSERT INTO t1 VALUES (0xEFBCA4EFBCA4EFBCA4);
DELETE FROM t1;
INSERT INTO t1 VALUES ('DDD');
SELECT * FROM t1;
a
DDD
DROP TABLE t1;