mirror of
https://github.com/MariaDB/server.git
synced 2025-01-19 13:32:33 +01:00
5a0e20715d
they are ignored to a new test suite "innodb_plugin". Remove a hack in mtr that was deployed to run the builtin InnoDB tests against the InnoDB Plugin. Also detect if a test is an 'innodb plugin test' and if so then transparently replace the builtin InnoDB with the InnoDB Plugin.
13 lines
550 B
Text
13 lines
550 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_plugin.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;
|