gh-ost/localtests/generated-columns57-unique/create.sql
Shlomi Noach 7202076c77 Generated column as part of UNIQUE (or PRIMARY) KEY
Signed-off-by: Shlomi Noach <2607934+shlomi-noach@users.noreply.github.com>
2021-01-19 13:27:00 +02:00

31 lines
1.2 KiB
SQL

drop table if exists gh_ost_test;
create table gh_ost_test (
id int auto_increment,
`idb` varchar(36) CHARACTER SET utf8mb4 GENERATED ALWAYS AS (json_unquote(json_extract(`jsonobj`,_utf8mb4'$._id'))) STORED NOT NULL,
`jsonobj` json NOT NULL,
PRIMARY KEY (`id`,`idb`)
) auto_increment=1;
insert into gh_ost_test (id, jsonobj) values (null, ''{"_id":2}'');
insert into gh_ost_test (id, jsonobj) values (null, ''{"_id":3}'');
drop event if exists gh_ost_test;
delimiter ;;
create event gh_ost_test
on schedule every 1 second
starts current_timestamp
ends current_timestamp + interval 60 second
on completion not preserve
enable
do
begin
insert into gh_ost_test (id, jsonobj) values (null, ''{"_id":5}'');
insert into gh_ost_test (id, jsonobj) values (null, ''{"_id":7}'');
insert into gh_ost_test (id, jsonobj) values (null, ''{"_id":11}'');
insert into gh_ost_test (id, jsonobj) values (null, ''{"_id":13}'');
insert into gh_ost_test (id, jsonobj) values (null, ''{"_id":17}'');
insert into gh_ost_test (id, jsonobj) values (null, ''{"_id":19}'');
insert into gh_ost_test (id, jsonobj) values (null, ''{"_id":23}'');
insert into gh_ost_test (id, jsonobj) values (null, ''{"_id":27}'');
end ;;