mirror of
https://github.com/MariaDB/server.git
synced 2025-02-04 21:02:17 +01:00
9854fb6fa7
This patch adds for "--ps-protocol" second execution of queries "SELECT". Also in this patch it is added ability to disable/enable (--disable_ps2_protocol/--enable_ps2_protocol) second execution for "--ps-prototocol" in testcases.
32 lines
695 B
Text
32 lines
695 B
Text
--source include/have_sequence.inc
|
|
|
|
#
|
|
# tests with auto_increment_increment and auto_increment_offset
|
|
#
|
|
|
|
--disable_ps2_protocol
|
|
set global auto_increment_increment= 2, auto_increment_offset= 2;
|
|
|
|
create sequence s start with -3 minvalue= -1000 increment 0;
|
|
|
|
select nextval(s);
|
|
select nextval(s);
|
|
flush tables;
|
|
select nextval(s);
|
|
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);
|
|
select nextval(s);
|
|
select nextval(s);
|
|
flush tables;
|
|
select nextval(s);
|
|
drop sequence s;
|
|
--enable_ps2_protocol
|
|
|
|
# Clean up
|
|
|
|
set global auto_increment_increment= default, auto_increment_offset= default;
|