mirror of
https://github.com/MariaDB/server.git
synced 2025-01-31 11:01:52 +01:00
30 lines
1.4 KiB
Text
30 lines
1.4 KiB
Text
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
|
|
1 1
|
|
select next value for s1, min_value from s1 where max_value> 2;
|
|
next value for s1 min_value
|
|
2 1
|
|
select next value for s1, min_value from s1 where max_value> 3;
|
|
next value for s1 min_value
|
|
3 1
|
|
select next value for s1, min_value from s1 where max_value> 4;
|
|
next value for s1 min_value
|
|
4 1
|
|
drop sequence s1;
|
|
include/show_binlog_events.inc
|
|
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 # 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 # 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 # # GTID #-#-#
|
|
master-bin.000001 # Query # # use `test`; DROP TABLE `s1` /* generated by server */
|