Merge branch '10.1' into 10.2

This commit is contained in:
Oleksandr Byelkin 2020-08-02 11:05:29 +02:00
commit ef7cb0a0b5
98 changed files with 964 additions and 398 deletions

View file

@ -30,6 +30,7 @@ SELECT * FROM t;
a
1
UPDATE t SET a=3 WHERE a=1;
SET GLOBAL innodb_status_output= @@GLOBAL.innodb_status_output;
# Starting with MariaDB 10.2, innodb_read_only implies READ UNCOMMITTED.
# In earlier versions, this would return the last committed version
# (empty table)!

View file

@ -52,6 +52,7 @@ SELECT * FROM t;
UPDATE t SET a=3 WHERE a=1;
--let $restart_parameters= --innodb-read-only
--source include/restart_mysqld.inc
SET GLOBAL innodb_status_output= @@GLOBAL.innodb_status_output;
--echo # Starting with MariaDB 10.2, innodb_read_only implies READ UNCOMMITTED.
--echo # In earlier versions, this would return the last committed version
--echo # (empty table)!