mirror of
https://github.com/MariaDB/server.git
synced 2025-02-02 03:51:50 +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
13 lines
543 B
Text
13 lines
543 B
Text
# Bug44032 no update-in-place of UTF-8 columns in ROW_FORMAT=REDUNDANT
|
|
# (btr_cur_update_in_place not invoked when updating from/to NULL;
|
|
# the update is performed by delete and insert instead)
|
|
|
|
-- source include/have_innodb.inc
|
|
|
|
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;
|