mirror of
https://github.com/MariaDB/server.git
synced 2025-01-19 13:32:33 +01:00
098679e8f8
Created a test suite 'innodb' under mysql-test/suite/innodb for the innodb plugin tests. test suite 'innodb' has tests only which are not under any other mysql-test suites. Total 14 testcases are added to the test suite. Note: the patches in storage/innodb_plugin/mysql-test/patches are not applied yet
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;
|