mirror of
https://github.com/MariaDB/server.git
synced 2025-08-01 03:47:19 +03:00
MDEV-28152 Features for sequences
- Add `as <int_type>` to sequence creation options - int_type can be signed or unsigned integer types, including tinyint, smallint, mediumint, int and bigint - Limitation: when alter sequence as <new_int_type>, cannot have any other alter options in the same statement - Limitation: increment remains signed longlong, and the hidden constraint (cache_size x abs(increment) < longlong_max) stays for unsigned types. This means for bigint unsigned, neither abs(increment) nor (cache_size x abs(increment)) can be between longlong_max and ulonglong_max - Truncating maxvalue and minvalue from user input to the nearest max or min value of the type, plus or minus 1. When the truncation happens, a warning is emitted - Information schema table for sequences
This commit is contained in:
@ -44,3 +44,23 @@ NEXTVAL(s1)
|
||||
COMMIT;
|
||||
DROP TABLE t1;
|
||||
DROP SEQUENCE s1;
|
||||
#
|
||||
# MDEV-28152 Features for sequence
|
||||
#
|
||||
CREATE SEQUENCE s1 as mediumint unsigned ENGINE=InnoDB;
|
||||
PREPARE stmt FROM "CREATE TABLE s2 LIKE s1";
|
||||
execute stmt;
|
||||
drop table s2;
|
||||
execute stmt;
|
||||
show create sequence s2;
|
||||
Table Create Table
|
||||
s2 CREATE SEQUENCE `s2` as mediumint unsigned start with 1 minvalue 1 maxvalue 16777214 increment by 1 cache 1000 nocycle ENGINE=InnoDB
|
||||
drop table s2;
|
||||
execute stmt;
|
||||
select * from s2;
|
||||
next_not_cached_value minimum_value maximum_value start_value increment cache_size cycle_option cycle_count
|
||||
1 1 16777214 1 1 1000 0 0
|
||||
DROP SEQUENCE s1, s2;
|
||||
#
|
||||
# End of 11.4 tests
|
||||
#
|
||||
|
Reference in New Issue
Block a user