mariadb/mysql-test/suite/sql_sequence/read_only.test
Lena Startseva 9854fb6fa7 MDEV-31003: Second execution for ps-protocol
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.
2023-07-26 17:15:00 +07:00

46 lines
1.1 KiB
Text

--source include/have_innodb.inc
--source include/not_embedded.inc
#
# Test innodb read only
#
create sequence s1 cache 2 engine=innodb;
--let $restart_parameters= --innodb-read-only
--source include/restart_mysqld.inc
connection default;
show global variables like 'innodb_read_only';
use test;
set session binlog_format= row;
--echo ###########################################
--echo read_only create error.
--echo ###########################################
show global variables like 'innodb_read_only';
use test;
--error ER_CANT_CREATE_TABLE
create sequence s2 cache 5 engine=innodb;
--echo ###########################################
--echo read_only query error.
--echo ###########################################
--error ER_OPEN_AS_READONLY
select next value for s1;
--error ER_OPEN_AS_READONLY
select next value for s1;
--error ER_OPEN_AS_READONLY
select next value for s1;
select * from s1;
--let $restart_parameters=
--source include/restart_mysqld.inc
select * from s1;
--disable_ps2_protocol
select next value for s1;
--enable_ps2_protocol
select * from s1;
drop sequence s1;