mirror of
https://github.com/MariaDB/server.git
synced 2025-01-19 13:32:33 +01:00
f5692f21f9
the InnoDB Plugin tests are now in mysql-test/suite/innodb_plugin. Move InnoDB tests to the innodb suite at mysql-test/suite/innodb.
7 lines
313 B
Text
7 lines
313 B
Text
CREATE TABLE bug44032(c CHAR(3) CHARACTER SET UTF8) ROW_FORMAT=REDUNDANT
|
|
ENGINE=InnoDB;
|
|
INSERT INTO bug44032 VALUES('abc'),(0xEFBCA4EFBCA4EFBCA4);
|
|
UPDATE bug44032 SET c='DDD' WHERE c=0xEFBCA4EFBCA4EFBCA4;
|
|
UPDATE bug44032 SET c=NULL WHERE c='DDD';
|
|
UPDATE bug44032 SET c='DDD' WHERE c IS NULL;
|
|
DROP TABLE bug44032;
|