File tree Expand file tree Collapse file tree 2 files changed +22
-0
lines changed
localtests/bigint-change-nullable Expand file tree Collapse file tree 2 files changed +22
-0
lines changed Original file line number Diff line number Diff line change 1+ drop table if exists gh_ost_test;
2+ create table gh_ost_test (
3+ id bigint auto_increment,
4+ val bigint not null ,
5+ primary key (id)
6+ ) auto_increment= 1 ;
7+
8+ drop event if exists gh_ost_test;
9+ delimiter ;;
10+ create event gh_ost_test
11+ on schedule every 1 second
12+ starts current_timestamp
13+ ends current_timestamp + interval 60 second
14+ on completion not preserve
15+ enable
16+ do
17+ begin
18+ insert into gh_ost_test values (null , 18446744073709551615 );
19+ insert into gh_ost_test values (null , 18446744073709551614 );
20+ insert into gh_ost_test values (null , 18446744073709551613 );
21+ end ;;
Original file line number Diff line number Diff line change 1+ --alter="change val val bigint"
You can’t perform that action at this time.
0 commit comments