set global auto_increment_increment= 2, auto_increment_offset= 2; create sequence s start with -3 minvalue= -1000 increment 0; select nextval(s); nextval(s) -2 select nextval(s); nextval(s) 0 flush tables; select nextval(s); nextval(s) 1998 drop sequence s; set global auto_increment_increment= 2, auto_increment_offset= 1; create sequence s start with -3 minvalue= -1000 increment 0; select nextval(s); nextval(s) -3 select nextval(s); nextval(s) -1 select nextval(s); nextval(s) 1 flush tables; select nextval(s); nextval(s) 1997 drop sequence s; set global auto_increment_increment= default, auto_increment_offset= default; # # MDEV-28152 Features for sequence # call mtr.add_suppression("signed integer overflow: 42 \\+ 9223372036854775800 cannot be represented in type 'long long int'"); call mtr.add_suppression("signed integer overflow: 9223372036854775800 \\+ 100000 cannot be represented in type 'long long int'"); set global auto_increment_increment= 100; set global auto_increment_offset= 42; create sequence s as bigint unsigned start with 9223372036854775800 increment 0; select next value for s; next value for s 9223372036854775842 select next value for s; next value for s 9223372036854775942 drop sequence s; set global auto_increment_increment= default, auto_increment_offset= default; # # End of 11.4 tests #