mirror of
https://github.com/MariaDB/server.git
synced 2025-07-29 05:21:33 +03:00
Fixed sequences based on comments from Peter Gulutzan and Andrii Nikitin
- Changed names of SEQUENCE table columns to be more close to ANSI - Fixed error message for SHOW SEQUENCE non_existing_sequence - Allow syntax CACHE +1 - Fixed ALTER TABLE for TEMPORARY sequences.
This commit is contained in:
@ -1,15 +1,15 @@
|
||||
create or replace sequence s1 cache 3;
|
||||
select next value for s1, min_value from s1 where max_value> 1;
|
||||
next value for s1 min_value
|
||||
select next value for s1, minimum_value from s1 where maximum_value> 1;
|
||||
next value for s1 minimum_value
|
||||
1 1
|
||||
select next value for s1, min_value from s1 where max_value> 2;
|
||||
next value for s1 min_value
|
||||
select next value for s1, minimum_value from s1 where maximum_value> 2;
|
||||
next value for s1 minimum_value
|
||||
2 1
|
||||
select next value for s1, min_value from s1 where max_value> 3;
|
||||
next value for s1 min_value
|
||||
select next value for s1, minimum_value from s1 where maximum_value> 3;
|
||||
next value for s1 minimum_value
|
||||
3 1
|
||||
select next value for s1, min_value from s1 where max_value> 4;
|
||||
next value for s1 min_value
|
||||
select next value for s1, minimum_value from s1 where maximum_value> 4;
|
||||
next value for s1 minimum_value
|
||||
4 1
|
||||
alter sequence s1 maxvalue 1000;
|
||||
drop sequence s1;
|
||||
@ -18,12 +18,12 @@ Log_name Pos Event_type Server_id End_log_pos Info
|
||||
master-bin.000001 # Gtid # # GTID #-#-#
|
||||
master-bin.000001 # Query # # use `test`; create or replace sequence s1 cache 3
|
||||
master-bin.000001 # Gtid # # BEGIN GTID #-#-#
|
||||
master-bin.000001 # Annotate_rows # # select next value for s1, min_value from s1 where max_value> 1
|
||||
master-bin.000001 # Annotate_rows # # select next value for s1, minimum_value from s1 where maximum_value> 1
|
||||
master-bin.000001 # Table_map # # table_id: # (test.s1)
|
||||
master-bin.000001 # Write_rows_v1 # # table_id: # flags: STMT_END_F
|
||||
master-bin.000001 # Query # # COMMIT
|
||||
master-bin.000001 # Gtid # # BEGIN GTID #-#-#
|
||||
master-bin.000001 # Annotate_rows # # select next value for s1, min_value from s1 where max_value> 4
|
||||
master-bin.000001 # Annotate_rows # # select next value for s1, minimum_value from s1 where maximum_value> 4
|
||||
master-bin.000001 # Table_map # # table_id: # (test.s1)
|
||||
master-bin.000001 # Write_rows_v1 # # table_id: # flags: STMT_END_F
|
||||
master-bin.000001 # Query # # COMMIT
|
||||
|
Reference in New Issue
Block a user