polardbxengine/mysql-test/suite/gcol/t/gcol_update.test

81 lines
2.2 KiB
Plaintext

--source include/have_debug.inc
set global innodb_purge_stop_now = 1;
# Index on virtual column
create table t1(f1 int not null, f2 blob not null, f3 blob not null,
vchar char(2) as (substr(f3,2,2)) virtual,
primary key(f1, f3(5)), index(vchar))engine=innodb;
insert into t1(f1,f2,f3) values(1, repeat('a',8000), repeat('b', 9000));
update t1 set f1=5 where f1=1;
delete from t1 where f1=5;
set global innodb_purge_run_now=1;
set global innodb_fast_shutdown=0;
--source include/restart_mysqld.inc
set global innodb_purge_stop_now = 1;
drop table t1;
# Index on virtual column and blob
create table t1(f1 int not null, f2 blob not null, f3 blob not null,
vchar char(2) as (substr(f3,2,2)) virtual,
primary key(f1, f3(5)), index(vchar, f3(2)))engine=innodb;
insert into t1(f1,f2,f3) values(1, repeat('a',8000), repeat('b', 9000));
update t1 set f1=5 where f1=1;
delete from t1 where f1=5;
set global innodb_purge_run_now=1;
set global innodb_fast_shutdown=0;
--source include/restart_mysqld.inc
set global innodb_purge_stop_now = 1;
drop table t1;
# Index on virtual column of blob type
create table t1(f1 int not null, f2 blob not null, f3 blob not null,
vchar blob as (f3) virtual,
primary key(f1, f3(5)), index(vchar(3)))engine=innodb;
insert into t1(f1,f2,f3) values(1, repeat('a',8000), repeat('b', 9000));
update t1 set f1=5 where f1=1;
delete from t1 where f1=5;
set global innodb_purge_run_now=1;
set global innodb_fast_shutdown=0;
--source include/restart_mysqld.inc
drop table t1;
--echo #
--echo # Bug #26838771: GCOL: INCORRECT BEHAVIOR WITH UPDATE ON FLY
--echo #
CREATE TABLE t1(c1 INT);
CREATE TABLE t2(c1 INT, c2 JSON, c3 varchar(15) GENERATED ALWAYS AS
(concat(c2,_utf8mb4'x')) VIRTUAL);
CREATE TABLE t3(c1 JSON, c2 INT GENERATED ALWAYS AS ((c1 + 1)) VIRTUAL);
INSERT INTO t2(c1,c2) VALUES(1, '{"tr": "x"}'), (2, '{"tr": "x"}');
INSERT INTO t3(c1) VALUES(CAST(7 AS JSON));
--error ER_NON_DEFAULT_VALUE_FOR_GENERATED_COLUMN
UPDATE t3 SET c2 = 0;
--error ER_NON_DEFAULT_VALUE_FOR_GENERATED_COLUMN
UPDATE t3 JOIN t2 ON (t3.c1 = t2.c1) SET t3.c2 = 0;
--error ER_NON_DEFAULT_VALUE_FOR_GENERATED_COLUMN
UPDATE t1 RIGHT JOIN
t2 ON (t1.c1 = t2.c1),
t3
SET t2.c2 = 'tr', t3.c2 = 0;
DROP TABLE t1,t2,t3;