--source include/have_s3.inc --source create_database.inc --echo # --echo # MDEV-19575 Assertion `page_st == 1' failed upon SELECT from S3 --echo # table which is being converted into Aria --echo # CREATE TABLE t1 (f INT); insert into t1 values (1),(2); ALTER TABLE t1 ENGINE=S3; select * from t1; --connect (con1,localhost,root,,$database) --send ALTER TABLE t1 ENGINE=Aria; --connection default SELECT * FROM t1; # Cleanup --connection con1 --reap --disconnect con1 --connection default DROP TABLE t1; # # clean up # --source drop_database.inc