We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 4fd4be1 + 86d8cf4 commit ef5cbedCopy full SHA for ef5cbed
2 files changed
localtests/bigint-change-nullable/create.sql
@@ -0,0 +1,21 @@
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 ;;
localtests/bigint-change-nullable/extra_args
@@ -0,0 +1 @@
+--alter="change val val bigint"
0 commit comments