mirror of
https://github.com/MariaDB/server.git
synced 2025-01-19 13:32:33 +01:00
905003c535
mysql-test/mysql-test-run.pl: The maria suite made default for execution. mysql-test/suite/maria: Maria tests moved to separate suite. mysql-test/suite/maria/r: Maria tests moved to separate suite. mysql-test/suite/maria/r/maria-autozerofill.result: Maria tests moved to separate suite. mysql-test/suite/maria/r/maria-big.result: Maria tests moved to separate suite. mysql-test/suite/maria/r/maria-big2.result: Maria tests moved to separate suite. mysql-test/suite/maria/r/maria-connect.result: Maria tests moved to separate suite. mysql-test/suite/maria/r/maria-gis-rtree-dynamic.result: Maria tests moved to separate suite. mysql-test/suite/maria/r/maria-gis-rtree-trans.result: Maria tests moved to separate suite. mysql-test/suite/maria/r/maria-gis-rtree.result: Maria tests moved to separate suite. mysql-test/suite/maria/r/maria-mvcc.result: Maria tests moved to separate suite. mysql-test/suite/maria/r/maria-no-logging.result: Maria tests moved to separate suite. mysql-test/suite/maria/r/maria-page-checksum.result: Maria tests moved to separate suite. mysql-test/suite/maria/r/maria-preload.result: Maria tests moved to separate suite. mysql-test/suite/maria/r/maria-purge.result: Maria tests moved to separate suite. mysql-test/suite/maria/r/maria-recover.result: Maria tests moved to separate suite. mysql-test/suite/maria/r/maria-recovery-big.result: Maria tests moved to separate suite. mysql-test/suite/maria/r/maria-recovery-bitmap.result: Maria tests moved to separate suite. mysql-test/suite/maria/r/maria-recovery-rtree-ft.result: Maria tests moved to separate suite. mysql-test/suite/maria/r/maria-recovery.result: Maria tests moved to separate suite. mysql-test/suite/maria/r/maria-recovery2.result: Maria tests moved to separate suite. mysql-test/suite/maria/r/maria.result: Maria tests moved to separate suite. mysql-test/suite/maria/r/maria2.result: Maria tests moved to separate suite. mysql-test/suite/maria/r/maria3.result: Maria tests moved to separate suite. mysql-test/suite/maria/r/maria_notembedded.result: Maria tests moved to separate suite. mysql-test/suite/maria/r/ps_maria.result: Maria tests moved to separate suite. mysql-test/suite/maria/t: Maria tests moved to separate suite. mysql-test/suite/maria/t/maria-autozerofill.test: Maria tests moved to separate suite. mysql-test/suite/maria/t/maria-big.test: Maria tests moved to separate suite. mysql-test/suite/maria/t/maria-big2.test: Maria tests moved to separate suite. mysql-test/suite/maria/t/maria-connect.test: Maria tests moved to separate suite. mysql-test/suite/maria/t/maria-gis-rtree-dynamic.test: Maria tests moved to separate suite. mysql-test/suite/maria/t/maria-gis-rtree-trans.test: Maria tests moved to separate suite. mysql-test/suite/maria/t/maria-gis-rtree.test: Maria tests moved to separate suite. mysql-test/suite/maria/t/maria-mvcc.test: Maria tests moved to separate suite. mysql-test/suite/maria/t/maria-no-logging.test: Maria tests moved to separate suite. mysql-test/suite/maria/t/maria-page-checksum.test: Maria tests moved to separate suite. mysql-test/suite/maria/t/maria-preload.test: Maria tests moved to separate suite. mysql-test/suite/maria/t/maria-purge.test: Maria tests moved to separate suite. mysql-test/suite/maria/t/maria-recover-master.opt: Maria tests moved to separate suite. mysql-test/suite/maria/t/maria-recover.test: Maria tests moved to separate suite. mysql-test/suite/maria/t/maria-recovery-big-master.opt: Maria tests moved to separate suite. mysql-test/suite/maria/t/maria-recovery-big.test: Maria tests moved to separate suite. mysql-test/suite/maria/t/maria-recovery-bitmap-master.opt: Maria tests moved to separate suite. mysql-test/suite/maria/t/maria-recovery-bitmap.test: Maria tests moved to separate suite. mysql-test/suite/maria/t/maria-recovery-master.opt: Maria tests moved to separate suite. mysql-test/suite/maria/t/maria-recovery-rtree-ft-master.opt: Maria tests moved to separate suite. mysql-test/suite/maria/t/maria-recovery-rtree-ft.test: Maria tests moved to separate suite. mysql-test/suite/maria/t/maria-recovery.test: Maria tests moved to separate suite. mysql-test/suite/maria/t/maria-recovery2-master.opt: Maria tests moved to separate suite. mysql-test/suite/maria/t/maria-recovery2.test: Maria tests moved to separate suite. mysql-test/suite/maria/t/maria.test: Maria tests moved to separate suite. mysql-test/suite/maria/t/maria2.test: Maria tests moved to separate suite. mysql-test/suite/maria/t/maria3.test: Maria tests moved to separate suite. mysql-test/suite/maria/t/maria_notembedded.test: Maria tests moved to separate suite. mysql-test/suite/maria/t/ps_maria.test: Maria tests moved to separate suite.
940 lines
29 KiB
Text
940 lines
29 KiB
Text
drop table if exists t1;
|
|
select @@global.maria_page_checksum;
|
|
@@global.maria_page_checksum
|
|
1
|
|
# iteration 1
|
|
set global maria_page_checksum = 0 ;
|
|
create table t1(a int) engine=maria ;
|
|
show create table t1 /* expecting PAGE_CHECKSUM=0 */ ;
|
|
Table Create Table
|
|
t1 CREATE TABLE `t1` (
|
|
`a` int(11) DEFAULT NULL
|
|
) ENGINE=MARIA DEFAULT CHARSET=latin1 PAGE_CHECKSUM=0
|
|
Page checksums are not used
|
|
set global maria_page_checksum = 0 ;
|
|
alter table t1 engine=maria ;
|
|
show create table t1 /* expecting PAGE_CHECKSUM=0 */ ;
|
|
Table Create Table
|
|
t1 CREATE TABLE `t1` (
|
|
`a` int(11) DEFAULT NULL
|
|
) ENGINE=MARIA DEFAULT CHARSET=latin1 PAGE_CHECKSUM=0
|
|
Page checksums are not used
|
|
drop table t1;
|
|
# iteration 2
|
|
set global maria_page_checksum = 0 ;
|
|
create table t1(a int) engine=maria ;
|
|
show create table t1 /* expecting PAGE_CHECKSUM=0 */ ;
|
|
Table Create Table
|
|
t1 CREATE TABLE `t1` (
|
|
`a` int(11) DEFAULT NULL
|
|
) ENGINE=MARIA DEFAULT CHARSET=latin1 PAGE_CHECKSUM=0
|
|
Page checksums are not used
|
|
set global maria_page_checksum = 0 ;
|
|
alter table t1 PAGE_CHECKSUM=0 ;
|
|
show create table t1 /* expecting PAGE_CHECKSUM=0 */ ;
|
|
Table Create Table
|
|
t1 CREATE TABLE `t1` (
|
|
`a` int(11) DEFAULT NULL
|
|
) ENGINE=MARIA DEFAULT CHARSET=latin1 PAGE_CHECKSUM=0
|
|
Page checksums are not used
|
|
drop table t1;
|
|
# iteration 3
|
|
set global maria_page_checksum = 0 ;
|
|
create table t1(a int) engine=maria ;
|
|
show create table t1 /* expecting PAGE_CHECKSUM=0 */ ;
|
|
Table Create Table
|
|
t1 CREATE TABLE `t1` (
|
|
`a` int(11) DEFAULT NULL
|
|
) ENGINE=MARIA DEFAULT CHARSET=latin1 PAGE_CHECKSUM=0
|
|
Page checksums are not used
|
|
set global maria_page_checksum = 0 ;
|
|
alter table t1 PAGE_CHECKSUM=1 ;
|
|
show create table t1 /* expecting PAGE_CHECKSUM=1 */ ;
|
|
Table Create Table
|
|
t1 CREATE TABLE `t1` (
|
|
`a` int(11) DEFAULT NULL
|
|
) ENGINE=MARIA DEFAULT CHARSET=latin1 PAGE_CHECKSUM=1
|
|
Page checksums are used
|
|
drop table t1;
|
|
# iteration 4
|
|
set global maria_page_checksum = 0 ;
|
|
create table t1(a int) engine=maria ;
|
|
show create table t1 /* expecting PAGE_CHECKSUM=0 */ ;
|
|
Table Create Table
|
|
t1 CREATE TABLE `t1` (
|
|
`a` int(11) DEFAULT NULL
|
|
) ENGINE=MARIA DEFAULT CHARSET=latin1 PAGE_CHECKSUM=0
|
|
Page checksums are not used
|
|
set global maria_page_checksum = 1 ;
|
|
alter table t1 engine=maria ;
|
|
show create table t1 /* expecting PAGE_CHECKSUM=0 */ ;
|
|
Table Create Table
|
|
t1 CREATE TABLE `t1` (
|
|
`a` int(11) DEFAULT NULL
|
|
) ENGINE=MARIA DEFAULT CHARSET=latin1 PAGE_CHECKSUM=0
|
|
Page checksums are not used
|
|
drop table t1;
|
|
# iteration 5
|
|
set global maria_page_checksum = 0 ;
|
|
create table t1(a int) engine=maria ;
|
|
show create table t1 /* expecting PAGE_CHECKSUM=0 */ ;
|
|
Table Create Table
|
|
t1 CREATE TABLE `t1` (
|
|
`a` int(11) DEFAULT NULL
|
|
) ENGINE=MARIA DEFAULT CHARSET=latin1 PAGE_CHECKSUM=0
|
|
Page checksums are not used
|
|
set global maria_page_checksum = 1 ;
|
|
alter table t1 PAGE_CHECKSUM=0 ;
|
|
show create table t1 /* expecting PAGE_CHECKSUM=0 */ ;
|
|
Table Create Table
|
|
t1 CREATE TABLE `t1` (
|
|
`a` int(11) DEFAULT NULL
|
|
) ENGINE=MARIA DEFAULT CHARSET=latin1 PAGE_CHECKSUM=0
|
|
Page checksums are not used
|
|
drop table t1;
|
|
# iteration 6
|
|
set global maria_page_checksum = 0 ;
|
|
create table t1(a int) engine=maria ;
|
|
show create table t1 /* expecting PAGE_CHECKSUM=0 */ ;
|
|
Table Create Table
|
|
t1 CREATE TABLE `t1` (
|
|
`a` int(11) DEFAULT NULL
|
|
) ENGINE=MARIA DEFAULT CHARSET=latin1 PAGE_CHECKSUM=0
|
|
Page checksums are not used
|
|
set global maria_page_checksum = 1 ;
|
|
alter table t1 PAGE_CHECKSUM=1 ;
|
|
show create table t1 /* expecting PAGE_CHECKSUM=1 */ ;
|
|
Table Create Table
|
|
t1 CREATE TABLE `t1` (
|
|
`a` int(11) DEFAULT NULL
|
|
) ENGINE=MARIA DEFAULT CHARSET=latin1 PAGE_CHECKSUM=1
|
|
Page checksums are used
|
|
drop table t1;
|
|
# iteration 7
|
|
set global maria_page_checksum = 0 ;
|
|
create table t1(a int) engine=maria PAGE_CHECKSUM=0 ;
|
|
show create table t1 /* expecting PAGE_CHECKSUM=0 */ ;
|
|
Table Create Table
|
|
t1 CREATE TABLE `t1` (
|
|
`a` int(11) DEFAULT NULL
|
|
) ENGINE=MARIA DEFAULT CHARSET=latin1 PAGE_CHECKSUM=0
|
|
Page checksums are not used
|
|
set global maria_page_checksum = 0 ;
|
|
alter table t1 engine=maria ;
|
|
show create table t1 /* expecting PAGE_CHECKSUM=0 */ ;
|
|
Table Create Table
|
|
t1 CREATE TABLE `t1` (
|
|
`a` int(11) DEFAULT NULL
|
|
) ENGINE=MARIA DEFAULT CHARSET=latin1 PAGE_CHECKSUM=0
|
|
Page checksums are not used
|
|
drop table t1;
|
|
# iteration 8
|
|
set global maria_page_checksum = 0 ;
|
|
create table t1(a int) engine=maria PAGE_CHECKSUM=0 ;
|
|
show create table t1 /* expecting PAGE_CHECKSUM=0 */ ;
|
|
Table Create Table
|
|
t1 CREATE TABLE `t1` (
|
|
`a` int(11) DEFAULT NULL
|
|
) ENGINE=MARIA DEFAULT CHARSET=latin1 PAGE_CHECKSUM=0
|
|
Page checksums are not used
|
|
set global maria_page_checksum = 0 ;
|
|
alter table t1 PAGE_CHECKSUM=0 ;
|
|
show create table t1 /* expecting PAGE_CHECKSUM=0 */ ;
|
|
Table Create Table
|
|
t1 CREATE TABLE `t1` (
|
|
`a` int(11) DEFAULT NULL
|
|
) ENGINE=MARIA DEFAULT CHARSET=latin1 PAGE_CHECKSUM=0
|
|
Page checksums are not used
|
|
drop table t1;
|
|
# iteration 9
|
|
set global maria_page_checksum = 0 ;
|
|
create table t1(a int) engine=maria PAGE_CHECKSUM=0 ;
|
|
show create table t1 /* expecting PAGE_CHECKSUM=0 */ ;
|
|
Table Create Table
|
|
t1 CREATE TABLE `t1` (
|
|
`a` int(11) DEFAULT NULL
|
|
) ENGINE=MARIA DEFAULT CHARSET=latin1 PAGE_CHECKSUM=0
|
|
Page checksums are not used
|
|
set global maria_page_checksum = 0 ;
|
|
alter table t1 PAGE_CHECKSUM=1 ;
|
|
show create table t1 /* expecting PAGE_CHECKSUM=1 */ ;
|
|
Table Create Table
|
|
t1 CREATE TABLE `t1` (
|
|
`a` int(11) DEFAULT NULL
|
|
) ENGINE=MARIA DEFAULT CHARSET=latin1 PAGE_CHECKSUM=1
|
|
Page checksums are used
|
|
drop table t1;
|
|
# iteration 10
|
|
set global maria_page_checksum = 0 ;
|
|
create table t1(a int) engine=maria PAGE_CHECKSUM=0 ;
|
|
show create table t1 /* expecting PAGE_CHECKSUM=0 */ ;
|
|
Table Create Table
|
|
t1 CREATE TABLE `t1` (
|
|
`a` int(11) DEFAULT NULL
|
|
) ENGINE=MARIA DEFAULT CHARSET=latin1 PAGE_CHECKSUM=0
|
|
Page checksums are not used
|
|
set global maria_page_checksum = 1 ;
|
|
alter table t1 engine=maria ;
|
|
show create table t1 /* expecting PAGE_CHECKSUM=0 */ ;
|
|
Table Create Table
|
|
t1 CREATE TABLE `t1` (
|
|
`a` int(11) DEFAULT NULL
|
|
) ENGINE=MARIA DEFAULT CHARSET=latin1 PAGE_CHECKSUM=0
|
|
Page checksums are not used
|
|
drop table t1;
|
|
# iteration 11
|
|
set global maria_page_checksum = 0 ;
|
|
create table t1(a int) engine=maria PAGE_CHECKSUM=0 ;
|
|
show create table t1 /* expecting PAGE_CHECKSUM=0 */ ;
|
|
Table Create Table
|
|
t1 CREATE TABLE `t1` (
|
|
`a` int(11) DEFAULT NULL
|
|
) ENGINE=MARIA DEFAULT CHARSET=latin1 PAGE_CHECKSUM=0
|
|
Page checksums are not used
|
|
set global maria_page_checksum = 1 ;
|
|
alter table t1 PAGE_CHECKSUM=0 ;
|
|
show create table t1 /* expecting PAGE_CHECKSUM=0 */ ;
|
|
Table Create Table
|
|
t1 CREATE TABLE `t1` (
|
|
`a` int(11) DEFAULT NULL
|
|
) ENGINE=MARIA DEFAULT CHARSET=latin1 PAGE_CHECKSUM=0
|
|
Page checksums are not used
|
|
drop table t1;
|
|
# iteration 12
|
|
set global maria_page_checksum = 0 ;
|
|
create table t1(a int) engine=maria PAGE_CHECKSUM=0 ;
|
|
show create table t1 /* expecting PAGE_CHECKSUM=0 */ ;
|
|
Table Create Table
|
|
t1 CREATE TABLE `t1` (
|
|
`a` int(11) DEFAULT NULL
|
|
) ENGINE=MARIA DEFAULT CHARSET=latin1 PAGE_CHECKSUM=0
|
|
Page checksums are not used
|
|
set global maria_page_checksum = 1 ;
|
|
alter table t1 PAGE_CHECKSUM=1 ;
|
|
show create table t1 /* expecting PAGE_CHECKSUM=1 */ ;
|
|
Table Create Table
|
|
t1 CREATE TABLE `t1` (
|
|
`a` int(11) DEFAULT NULL
|
|
) ENGINE=MARIA DEFAULT CHARSET=latin1 PAGE_CHECKSUM=1
|
|
Page checksums are used
|
|
drop table t1;
|
|
# iteration 13
|
|
set global maria_page_checksum = 0 ;
|
|
create table t1(a int) engine=maria PAGE_CHECKSUM=1 ;
|
|
show create table t1 /* expecting PAGE_CHECKSUM=1 */ ;
|
|
Table Create Table
|
|
t1 CREATE TABLE `t1` (
|
|
`a` int(11) DEFAULT NULL
|
|
) ENGINE=MARIA DEFAULT CHARSET=latin1 PAGE_CHECKSUM=1
|
|
Page checksums are used
|
|
set global maria_page_checksum = 0 ;
|
|
alter table t1 engine=maria ;
|
|
show create table t1 /* expecting PAGE_CHECKSUM=1 */ ;
|
|
Table Create Table
|
|
t1 CREATE TABLE `t1` (
|
|
`a` int(11) DEFAULT NULL
|
|
) ENGINE=MARIA DEFAULT CHARSET=latin1 PAGE_CHECKSUM=1
|
|
Page checksums are used
|
|
drop table t1;
|
|
# iteration 14
|
|
set global maria_page_checksum = 0 ;
|
|
create table t1(a int) engine=maria PAGE_CHECKSUM=1 ;
|
|
show create table t1 /* expecting PAGE_CHECKSUM=1 */ ;
|
|
Table Create Table
|
|
t1 CREATE TABLE `t1` (
|
|
`a` int(11) DEFAULT NULL
|
|
) ENGINE=MARIA DEFAULT CHARSET=latin1 PAGE_CHECKSUM=1
|
|
Page checksums are used
|
|
set global maria_page_checksum = 0 ;
|
|
alter table t1 PAGE_CHECKSUM=0 ;
|
|
show create table t1 /* expecting PAGE_CHECKSUM=0 */ ;
|
|
Table Create Table
|
|
t1 CREATE TABLE `t1` (
|
|
`a` int(11) DEFAULT NULL
|
|
) ENGINE=MARIA DEFAULT CHARSET=latin1 PAGE_CHECKSUM=0
|
|
Page checksums are not used
|
|
drop table t1;
|
|
# iteration 15
|
|
set global maria_page_checksum = 0 ;
|
|
create table t1(a int) engine=maria PAGE_CHECKSUM=1 ;
|
|
show create table t1 /* expecting PAGE_CHECKSUM=1 */ ;
|
|
Table Create Table
|
|
t1 CREATE TABLE `t1` (
|
|
`a` int(11) DEFAULT NULL
|
|
) ENGINE=MARIA DEFAULT CHARSET=latin1 PAGE_CHECKSUM=1
|
|
Page checksums are used
|
|
set global maria_page_checksum = 0 ;
|
|
alter table t1 PAGE_CHECKSUM=1 ;
|
|
show create table t1 /* expecting PAGE_CHECKSUM=1 */ ;
|
|
Table Create Table
|
|
t1 CREATE TABLE `t1` (
|
|
`a` int(11) DEFAULT NULL
|
|
) ENGINE=MARIA DEFAULT CHARSET=latin1 PAGE_CHECKSUM=1
|
|
Page checksums are used
|
|
drop table t1;
|
|
# iteration 16
|
|
set global maria_page_checksum = 0 ;
|
|
create table t1(a int) engine=maria PAGE_CHECKSUM=1 ;
|
|
show create table t1 /* expecting PAGE_CHECKSUM=1 */ ;
|
|
Table Create Table
|
|
t1 CREATE TABLE `t1` (
|
|
`a` int(11) DEFAULT NULL
|
|
) ENGINE=MARIA DEFAULT CHARSET=latin1 PAGE_CHECKSUM=1
|
|
Page checksums are used
|
|
set global maria_page_checksum = 1 ;
|
|
alter table t1 engine=maria ;
|
|
show create table t1 /* expecting PAGE_CHECKSUM=1 */ ;
|
|
Table Create Table
|
|
t1 CREATE TABLE `t1` (
|
|
`a` int(11) DEFAULT NULL
|
|
) ENGINE=MARIA DEFAULT CHARSET=latin1 PAGE_CHECKSUM=1
|
|
Page checksums are used
|
|
drop table t1;
|
|
# iteration 17
|
|
set global maria_page_checksum = 0 ;
|
|
create table t1(a int) engine=maria PAGE_CHECKSUM=1 ;
|
|
show create table t1 /* expecting PAGE_CHECKSUM=1 */ ;
|
|
Table Create Table
|
|
t1 CREATE TABLE `t1` (
|
|
`a` int(11) DEFAULT NULL
|
|
) ENGINE=MARIA DEFAULT CHARSET=latin1 PAGE_CHECKSUM=1
|
|
Page checksums are used
|
|
set global maria_page_checksum = 1 ;
|
|
alter table t1 PAGE_CHECKSUM=0 ;
|
|
show create table t1 /* expecting PAGE_CHECKSUM=0 */ ;
|
|
Table Create Table
|
|
t1 CREATE TABLE `t1` (
|
|
`a` int(11) DEFAULT NULL
|
|
) ENGINE=MARIA DEFAULT CHARSET=latin1 PAGE_CHECKSUM=0
|
|
Page checksums are not used
|
|
drop table t1;
|
|
# iteration 18
|
|
set global maria_page_checksum = 0 ;
|
|
create table t1(a int) engine=maria PAGE_CHECKSUM=1 ;
|
|
show create table t1 /* expecting PAGE_CHECKSUM=1 */ ;
|
|
Table Create Table
|
|
t1 CREATE TABLE `t1` (
|
|
`a` int(11) DEFAULT NULL
|
|
) ENGINE=MARIA DEFAULT CHARSET=latin1 PAGE_CHECKSUM=1
|
|
Page checksums are used
|
|
set global maria_page_checksum = 1 ;
|
|
alter table t1 PAGE_CHECKSUM=1 ;
|
|
show create table t1 /* expecting PAGE_CHECKSUM=1 */ ;
|
|
Table Create Table
|
|
t1 CREATE TABLE `t1` (
|
|
`a` int(11) DEFAULT NULL
|
|
) ENGINE=MARIA DEFAULT CHARSET=latin1 PAGE_CHECKSUM=1
|
|
Page checksums are used
|
|
drop table t1;
|
|
# iteration 19
|
|
set global maria_page_checksum = 1 ;
|
|
create table t1(a int) engine=maria ;
|
|
show create table t1 /* expecting PAGE_CHECKSUM=1 */ ;
|
|
Table Create Table
|
|
t1 CREATE TABLE `t1` (
|
|
`a` int(11) DEFAULT NULL
|
|
) ENGINE=MARIA DEFAULT CHARSET=latin1 PAGE_CHECKSUM=1
|
|
Page checksums are used
|
|
set global maria_page_checksum = 0 ;
|
|
alter table t1 engine=maria ;
|
|
show create table t1 /* expecting PAGE_CHECKSUM=1 */ ;
|
|
Table Create Table
|
|
t1 CREATE TABLE `t1` (
|
|
`a` int(11) DEFAULT NULL
|
|
) ENGINE=MARIA DEFAULT CHARSET=latin1 PAGE_CHECKSUM=1
|
|
Page checksums are used
|
|
drop table t1;
|
|
# iteration 20
|
|
set global maria_page_checksum = 1 ;
|
|
create table t1(a int) engine=maria ;
|
|
show create table t1 /* expecting PAGE_CHECKSUM=1 */ ;
|
|
Table Create Table
|
|
t1 CREATE TABLE `t1` (
|
|
`a` int(11) DEFAULT NULL
|
|
) ENGINE=MARIA DEFAULT CHARSET=latin1 PAGE_CHECKSUM=1
|
|
Page checksums are used
|
|
set global maria_page_checksum = 0 ;
|
|
alter table t1 PAGE_CHECKSUM=0 ;
|
|
show create table t1 /* expecting PAGE_CHECKSUM=0 */ ;
|
|
Table Create Table
|
|
t1 CREATE TABLE `t1` (
|
|
`a` int(11) DEFAULT NULL
|
|
) ENGINE=MARIA DEFAULT CHARSET=latin1 PAGE_CHECKSUM=0
|
|
Page checksums are not used
|
|
drop table t1;
|
|
# iteration 21
|
|
set global maria_page_checksum = 1 ;
|
|
create table t1(a int) engine=maria ;
|
|
show create table t1 /* expecting PAGE_CHECKSUM=1 */ ;
|
|
Table Create Table
|
|
t1 CREATE TABLE `t1` (
|
|
`a` int(11) DEFAULT NULL
|
|
) ENGINE=MARIA DEFAULT CHARSET=latin1 PAGE_CHECKSUM=1
|
|
Page checksums are used
|
|
set global maria_page_checksum = 0 ;
|
|
alter table t1 PAGE_CHECKSUM=1 ;
|
|
show create table t1 /* expecting PAGE_CHECKSUM=1 */ ;
|
|
Table Create Table
|
|
t1 CREATE TABLE `t1` (
|
|
`a` int(11) DEFAULT NULL
|
|
) ENGINE=MARIA DEFAULT CHARSET=latin1 PAGE_CHECKSUM=1
|
|
Page checksums are used
|
|
drop table t1;
|
|
# iteration 22
|
|
set global maria_page_checksum = 1 ;
|
|
create table t1(a int) engine=maria ;
|
|
show create table t1 /* expecting PAGE_CHECKSUM=1 */ ;
|
|
Table Create Table
|
|
t1 CREATE TABLE `t1` (
|
|
`a` int(11) DEFAULT NULL
|
|
) ENGINE=MARIA DEFAULT CHARSET=latin1 PAGE_CHECKSUM=1
|
|
Page checksums are used
|
|
set global maria_page_checksum = 1 ;
|
|
alter table t1 engine=maria ;
|
|
show create table t1 /* expecting PAGE_CHECKSUM=1 */ ;
|
|
Table Create Table
|
|
t1 CREATE TABLE `t1` (
|
|
`a` int(11) DEFAULT NULL
|
|
) ENGINE=MARIA DEFAULT CHARSET=latin1 PAGE_CHECKSUM=1
|
|
Page checksums are used
|
|
drop table t1;
|
|
# iteration 23
|
|
set global maria_page_checksum = 1 ;
|
|
create table t1(a int) engine=maria ;
|
|
show create table t1 /* expecting PAGE_CHECKSUM=1 */ ;
|
|
Table Create Table
|
|
t1 CREATE TABLE `t1` (
|
|
`a` int(11) DEFAULT NULL
|
|
) ENGINE=MARIA DEFAULT CHARSET=latin1 PAGE_CHECKSUM=1
|
|
Page checksums are used
|
|
set global maria_page_checksum = 1 ;
|
|
alter table t1 PAGE_CHECKSUM=0 ;
|
|
show create table t1 /* expecting PAGE_CHECKSUM=0 */ ;
|
|
Table Create Table
|
|
t1 CREATE TABLE `t1` (
|
|
`a` int(11) DEFAULT NULL
|
|
) ENGINE=MARIA DEFAULT CHARSET=latin1 PAGE_CHECKSUM=0
|
|
Page checksums are not used
|
|
drop table t1;
|
|
# iteration 24
|
|
set global maria_page_checksum = 1 ;
|
|
create table t1(a int) engine=maria ;
|
|
show create table t1 /* expecting PAGE_CHECKSUM=1 */ ;
|
|
Table Create Table
|
|
t1 CREATE TABLE `t1` (
|
|
`a` int(11) DEFAULT NULL
|
|
) ENGINE=MARIA DEFAULT CHARSET=latin1 PAGE_CHECKSUM=1
|
|
Page checksums are used
|
|
set global maria_page_checksum = 1 ;
|
|
alter table t1 PAGE_CHECKSUM=1 ;
|
|
show create table t1 /* expecting PAGE_CHECKSUM=1 */ ;
|
|
Table Create Table
|
|
t1 CREATE TABLE `t1` (
|
|
`a` int(11) DEFAULT NULL
|
|
) ENGINE=MARIA DEFAULT CHARSET=latin1 PAGE_CHECKSUM=1
|
|
Page checksums are used
|
|
drop table t1;
|
|
# iteration 25
|
|
set global maria_page_checksum = 1 ;
|
|
create table t1(a int) engine=maria PAGE_CHECKSUM=0 ;
|
|
show create table t1 /* expecting PAGE_CHECKSUM=0 */ ;
|
|
Table Create Table
|
|
t1 CREATE TABLE `t1` (
|
|
`a` int(11) DEFAULT NULL
|
|
) ENGINE=MARIA DEFAULT CHARSET=latin1 PAGE_CHECKSUM=0
|
|
Page checksums are not used
|
|
set global maria_page_checksum = 0 ;
|
|
alter table t1 engine=maria ;
|
|
show create table t1 /* expecting PAGE_CHECKSUM=0 */ ;
|
|
Table Create Table
|
|
t1 CREATE TABLE `t1` (
|
|
`a` int(11) DEFAULT NULL
|
|
) ENGINE=MARIA DEFAULT CHARSET=latin1 PAGE_CHECKSUM=0
|
|
Page checksums are not used
|
|
drop table t1;
|
|
# iteration 26
|
|
set global maria_page_checksum = 1 ;
|
|
create table t1(a int) engine=maria PAGE_CHECKSUM=0 ;
|
|
show create table t1 /* expecting PAGE_CHECKSUM=0 */ ;
|
|
Table Create Table
|
|
t1 CREATE TABLE `t1` (
|
|
`a` int(11) DEFAULT NULL
|
|
) ENGINE=MARIA DEFAULT CHARSET=latin1 PAGE_CHECKSUM=0
|
|
Page checksums are not used
|
|
set global maria_page_checksum = 0 ;
|
|
alter table t1 PAGE_CHECKSUM=0 ;
|
|
show create table t1 /* expecting PAGE_CHECKSUM=0 */ ;
|
|
Table Create Table
|
|
t1 CREATE TABLE `t1` (
|
|
`a` int(11) DEFAULT NULL
|
|
) ENGINE=MARIA DEFAULT CHARSET=latin1 PAGE_CHECKSUM=0
|
|
Page checksums are not used
|
|
drop table t1;
|
|
# iteration 27
|
|
set global maria_page_checksum = 1 ;
|
|
create table t1(a int) engine=maria PAGE_CHECKSUM=0 ;
|
|
show create table t1 /* expecting PAGE_CHECKSUM=0 */ ;
|
|
Table Create Table
|
|
t1 CREATE TABLE `t1` (
|
|
`a` int(11) DEFAULT NULL
|
|
) ENGINE=MARIA DEFAULT CHARSET=latin1 PAGE_CHECKSUM=0
|
|
Page checksums are not used
|
|
set global maria_page_checksum = 0 ;
|
|
alter table t1 PAGE_CHECKSUM=1 ;
|
|
show create table t1 /* expecting PAGE_CHECKSUM=1 */ ;
|
|
Table Create Table
|
|
t1 CREATE TABLE `t1` (
|
|
`a` int(11) DEFAULT NULL
|
|
) ENGINE=MARIA DEFAULT CHARSET=latin1 PAGE_CHECKSUM=1
|
|
Page checksums are used
|
|
drop table t1;
|
|
# iteration 28
|
|
set global maria_page_checksum = 1 ;
|
|
create table t1(a int) engine=maria PAGE_CHECKSUM=0 ;
|
|
show create table t1 /* expecting PAGE_CHECKSUM=0 */ ;
|
|
Table Create Table
|
|
t1 CREATE TABLE `t1` (
|
|
`a` int(11) DEFAULT NULL
|
|
) ENGINE=MARIA DEFAULT CHARSET=latin1 PAGE_CHECKSUM=0
|
|
Page checksums are not used
|
|
set global maria_page_checksum = 1 ;
|
|
alter table t1 engine=maria ;
|
|
show create table t1 /* expecting PAGE_CHECKSUM=0 */ ;
|
|
Table Create Table
|
|
t1 CREATE TABLE `t1` (
|
|
`a` int(11) DEFAULT NULL
|
|
) ENGINE=MARIA DEFAULT CHARSET=latin1 PAGE_CHECKSUM=0
|
|
Page checksums are not used
|
|
drop table t1;
|
|
# iteration 29
|
|
set global maria_page_checksum = 1 ;
|
|
create table t1(a int) engine=maria PAGE_CHECKSUM=0 ;
|
|
show create table t1 /* expecting PAGE_CHECKSUM=0 */ ;
|
|
Table Create Table
|
|
t1 CREATE TABLE `t1` (
|
|
`a` int(11) DEFAULT NULL
|
|
) ENGINE=MARIA DEFAULT CHARSET=latin1 PAGE_CHECKSUM=0
|
|
Page checksums are not used
|
|
set global maria_page_checksum = 1 ;
|
|
alter table t1 PAGE_CHECKSUM=0 ;
|
|
show create table t1 /* expecting PAGE_CHECKSUM=0 */ ;
|
|
Table Create Table
|
|
t1 CREATE TABLE `t1` (
|
|
`a` int(11) DEFAULT NULL
|
|
) ENGINE=MARIA DEFAULT CHARSET=latin1 PAGE_CHECKSUM=0
|
|
Page checksums are not used
|
|
drop table t1;
|
|
# iteration 30
|
|
set global maria_page_checksum = 1 ;
|
|
create table t1(a int) engine=maria PAGE_CHECKSUM=0 ;
|
|
show create table t1 /* expecting PAGE_CHECKSUM=0 */ ;
|
|
Table Create Table
|
|
t1 CREATE TABLE `t1` (
|
|
`a` int(11) DEFAULT NULL
|
|
) ENGINE=MARIA DEFAULT CHARSET=latin1 PAGE_CHECKSUM=0
|
|
Page checksums are not used
|
|
set global maria_page_checksum = 1 ;
|
|
alter table t1 PAGE_CHECKSUM=1 ;
|
|
show create table t1 /* expecting PAGE_CHECKSUM=1 */ ;
|
|
Table Create Table
|
|
t1 CREATE TABLE `t1` (
|
|
`a` int(11) DEFAULT NULL
|
|
) ENGINE=MARIA DEFAULT CHARSET=latin1 PAGE_CHECKSUM=1
|
|
Page checksums are used
|
|
drop table t1;
|
|
# iteration 31
|
|
set global maria_page_checksum = 1 ;
|
|
create table t1(a int) engine=maria PAGE_CHECKSUM=1 ;
|
|
show create table t1 /* expecting PAGE_CHECKSUM=1 */ ;
|
|
Table Create Table
|
|
t1 CREATE TABLE `t1` (
|
|
`a` int(11) DEFAULT NULL
|
|
) ENGINE=MARIA DEFAULT CHARSET=latin1 PAGE_CHECKSUM=1
|
|
Page checksums are used
|
|
set global maria_page_checksum = 0 ;
|
|
alter table t1 engine=maria ;
|
|
show create table t1 /* expecting PAGE_CHECKSUM=1 */ ;
|
|
Table Create Table
|
|
t1 CREATE TABLE `t1` (
|
|
`a` int(11) DEFAULT NULL
|
|
) ENGINE=MARIA DEFAULT CHARSET=latin1 PAGE_CHECKSUM=1
|
|
Page checksums are used
|
|
drop table t1;
|
|
# iteration 32
|
|
set global maria_page_checksum = 1 ;
|
|
create table t1(a int) engine=maria PAGE_CHECKSUM=1 ;
|
|
show create table t1 /* expecting PAGE_CHECKSUM=1 */ ;
|
|
Table Create Table
|
|
t1 CREATE TABLE `t1` (
|
|
`a` int(11) DEFAULT NULL
|
|
) ENGINE=MARIA DEFAULT CHARSET=latin1 PAGE_CHECKSUM=1
|
|
Page checksums are used
|
|
set global maria_page_checksum = 0 ;
|
|
alter table t1 PAGE_CHECKSUM=0 ;
|
|
show create table t1 /* expecting PAGE_CHECKSUM=0 */ ;
|
|
Table Create Table
|
|
t1 CREATE TABLE `t1` (
|
|
`a` int(11) DEFAULT NULL
|
|
) ENGINE=MARIA DEFAULT CHARSET=latin1 PAGE_CHECKSUM=0
|
|
Page checksums are not used
|
|
drop table t1;
|
|
# iteration 33
|
|
set global maria_page_checksum = 1 ;
|
|
create table t1(a int) engine=maria PAGE_CHECKSUM=1 ;
|
|
show create table t1 /* expecting PAGE_CHECKSUM=1 */ ;
|
|
Table Create Table
|
|
t1 CREATE TABLE `t1` (
|
|
`a` int(11) DEFAULT NULL
|
|
) ENGINE=MARIA DEFAULT CHARSET=latin1 PAGE_CHECKSUM=1
|
|
Page checksums are used
|
|
set global maria_page_checksum = 0 ;
|
|
alter table t1 PAGE_CHECKSUM=1 ;
|
|
show create table t1 /* expecting PAGE_CHECKSUM=1 */ ;
|
|
Table Create Table
|
|
t1 CREATE TABLE `t1` (
|
|
`a` int(11) DEFAULT NULL
|
|
) ENGINE=MARIA DEFAULT CHARSET=latin1 PAGE_CHECKSUM=1
|
|
Page checksums are used
|
|
drop table t1;
|
|
# iteration 34
|
|
set global maria_page_checksum = 1 ;
|
|
create table t1(a int) engine=maria PAGE_CHECKSUM=1 ;
|
|
show create table t1 /* expecting PAGE_CHECKSUM=1 */ ;
|
|
Table Create Table
|
|
t1 CREATE TABLE `t1` (
|
|
`a` int(11) DEFAULT NULL
|
|
) ENGINE=MARIA DEFAULT CHARSET=latin1 PAGE_CHECKSUM=1
|
|
Page checksums are used
|
|
set global maria_page_checksum = 1 ;
|
|
alter table t1 engine=maria ;
|
|
show create table t1 /* expecting PAGE_CHECKSUM=1 */ ;
|
|
Table Create Table
|
|
t1 CREATE TABLE `t1` (
|
|
`a` int(11) DEFAULT NULL
|
|
) ENGINE=MARIA DEFAULT CHARSET=latin1 PAGE_CHECKSUM=1
|
|
Page checksums are used
|
|
drop table t1;
|
|
# iteration 35
|
|
set global maria_page_checksum = 1 ;
|
|
create table t1(a int) engine=maria PAGE_CHECKSUM=1 ;
|
|
show create table t1 /* expecting PAGE_CHECKSUM=1 */ ;
|
|
Table Create Table
|
|
t1 CREATE TABLE `t1` (
|
|
`a` int(11) DEFAULT NULL
|
|
) ENGINE=MARIA DEFAULT CHARSET=latin1 PAGE_CHECKSUM=1
|
|
Page checksums are used
|
|
set global maria_page_checksum = 1 ;
|
|
alter table t1 PAGE_CHECKSUM=0 ;
|
|
show create table t1 /* expecting PAGE_CHECKSUM=0 */ ;
|
|
Table Create Table
|
|
t1 CREATE TABLE `t1` (
|
|
`a` int(11) DEFAULT NULL
|
|
) ENGINE=MARIA DEFAULT CHARSET=latin1 PAGE_CHECKSUM=0
|
|
Page checksums are not used
|
|
drop table t1;
|
|
# iteration 36
|
|
set global maria_page_checksum = 1 ;
|
|
create table t1(a int) engine=maria PAGE_CHECKSUM=1 ;
|
|
show create table t1 /* expecting PAGE_CHECKSUM=1 */ ;
|
|
Table Create Table
|
|
t1 CREATE TABLE `t1` (
|
|
`a` int(11) DEFAULT NULL
|
|
) ENGINE=MARIA DEFAULT CHARSET=latin1 PAGE_CHECKSUM=1
|
|
Page checksums are used
|
|
set global maria_page_checksum = 1 ;
|
|
alter table t1 PAGE_CHECKSUM=1 ;
|
|
show create table t1 /* expecting PAGE_CHECKSUM=1 */ ;
|
|
Table Create Table
|
|
t1 CREATE TABLE `t1` (
|
|
`a` int(11) DEFAULT NULL
|
|
) ENGINE=MARIA DEFAULT CHARSET=latin1 PAGE_CHECKSUM=1
|
|
Page checksums are used
|
|
drop table t1;
|
|
# iteration 1
|
|
create table t1(a int) engine=maria ;
|
|
show create table t1;
|
|
Table Create Table
|
|
t1 CREATE TABLE `t1` (
|
|
`a` int(11) DEFAULT NULL
|
|
) ENGINE=MARIA DEFAULT CHARSET=latin1 PAGE_CHECKSUM=1
|
|
Crashsafe: yes
|
|
alter table t1 modify a bigint ;
|
|
show create table t1;
|
|
Table Create Table
|
|
t1 CREATE TABLE `t1` (
|
|
`a` bigint(20) DEFAULT NULL
|
|
) ENGINE=MARIA DEFAULT CHARSET=latin1 PAGE_CHECKSUM=1
|
|
Crashsafe: yes
|
|
drop table t1;
|
|
# iteration 2
|
|
create table t1(a int) engine=maria ;
|
|
show create table t1;
|
|
Table Create Table
|
|
t1 CREATE TABLE `t1` (
|
|
`a` int(11) DEFAULT NULL
|
|
) ENGINE=MARIA DEFAULT CHARSET=latin1 PAGE_CHECKSUM=1
|
|
Crashsafe: yes
|
|
alter table t1 transactional=0 ;
|
|
show create table t1;
|
|
Table Create Table
|
|
t1 CREATE TABLE `t1` (
|
|
`a` int(11) DEFAULT NULL
|
|
) ENGINE=MARIA DEFAULT CHARSET=latin1 PAGE_CHECKSUM=1 TRANSACTIONAL=0
|
|
Crashsafe: no
|
|
drop table t1;
|
|
# iteration 3
|
|
create table t1(a int) engine=maria ;
|
|
show create table t1;
|
|
Table Create Table
|
|
t1 CREATE TABLE `t1` (
|
|
`a` int(11) DEFAULT NULL
|
|
) ENGINE=MARIA DEFAULT CHARSET=latin1 PAGE_CHECKSUM=1
|
|
Crashsafe: yes
|
|
alter table t1 transactional=1 ;
|
|
show create table t1;
|
|
Table Create Table
|
|
t1 CREATE TABLE `t1` (
|
|
`a` int(11) DEFAULT NULL
|
|
) ENGINE=MARIA DEFAULT CHARSET=latin1 PAGE_CHECKSUM=1 TRANSACTIONAL=1
|
|
Crashsafe: yes
|
|
drop table t1;
|
|
# iteration 4
|
|
create table t1(a int) engine=maria ;
|
|
show create table t1;
|
|
Table Create Table
|
|
t1 CREATE TABLE `t1` (
|
|
`a` int(11) DEFAULT NULL
|
|
) ENGINE=MARIA DEFAULT CHARSET=latin1 PAGE_CHECKSUM=1
|
|
Crashsafe: yes
|
|
alter table t1 engine=maria ;
|
|
show create table t1;
|
|
Table Create Table
|
|
t1 CREATE TABLE `t1` (
|
|
`a` int(11) DEFAULT NULL
|
|
) ENGINE=MARIA DEFAULT CHARSET=latin1 PAGE_CHECKSUM=1
|
|
Crashsafe: yes
|
|
drop table t1;
|
|
# iteration 5
|
|
create table t1(a int) engine=maria ;
|
|
show create table t1;
|
|
Table Create Table
|
|
t1 CREATE TABLE `t1` (
|
|
`a` int(11) DEFAULT NULL
|
|
) ENGINE=MARIA DEFAULT CHARSET=latin1 PAGE_CHECKSUM=1
|
|
Crashsafe: yes
|
|
alter table t1 engine=maria transactional=0 ;
|
|
show create table t1;
|
|
Table Create Table
|
|
t1 CREATE TABLE `t1` (
|
|
`a` int(11) DEFAULT NULL
|
|
) ENGINE=MARIA DEFAULT CHARSET=latin1 PAGE_CHECKSUM=1 TRANSACTIONAL=0
|
|
Crashsafe: no
|
|
drop table t1;
|
|
# iteration 6
|
|
create table t1(a int) engine=maria ;
|
|
show create table t1;
|
|
Table Create Table
|
|
t1 CREATE TABLE `t1` (
|
|
`a` int(11) DEFAULT NULL
|
|
) ENGINE=MARIA DEFAULT CHARSET=latin1 PAGE_CHECKSUM=1
|
|
Crashsafe: yes
|
|
alter table t1 engine=maria transactional=1 ;
|
|
show create table t1;
|
|
Table Create Table
|
|
t1 CREATE TABLE `t1` (
|
|
`a` int(11) DEFAULT NULL
|
|
) ENGINE=MARIA DEFAULT CHARSET=latin1 PAGE_CHECKSUM=1 TRANSACTIONAL=1
|
|
Crashsafe: yes
|
|
drop table t1;
|
|
# iteration 7
|
|
create table t1(a int) engine=maria transactional=0 ;
|
|
show create table t1;
|
|
Table Create Table
|
|
t1 CREATE TABLE `t1` (
|
|
`a` int(11) DEFAULT NULL
|
|
) ENGINE=MARIA DEFAULT CHARSET=latin1 PAGE_CHECKSUM=1 TRANSACTIONAL=0
|
|
Crashsafe: no
|
|
alter table t1 modify a bigint ;
|
|
show create table t1;
|
|
Table Create Table
|
|
t1 CREATE TABLE `t1` (
|
|
`a` bigint(20) DEFAULT NULL
|
|
) ENGINE=MARIA DEFAULT CHARSET=latin1 PAGE_CHECKSUM=1 TRANSACTIONAL=0
|
|
Crashsafe: no
|
|
drop table t1;
|
|
# iteration 8
|
|
create table t1(a int) engine=maria transactional=0 ;
|
|
show create table t1;
|
|
Table Create Table
|
|
t1 CREATE TABLE `t1` (
|
|
`a` int(11) DEFAULT NULL
|
|
) ENGINE=MARIA DEFAULT CHARSET=latin1 PAGE_CHECKSUM=1 TRANSACTIONAL=0
|
|
Crashsafe: no
|
|
alter table t1 transactional=0 ;
|
|
show create table t1;
|
|
Table Create Table
|
|
t1 CREATE TABLE `t1` (
|
|
`a` int(11) DEFAULT NULL
|
|
) ENGINE=MARIA DEFAULT CHARSET=latin1 PAGE_CHECKSUM=1 TRANSACTIONAL=0
|
|
Crashsafe: no
|
|
drop table t1;
|
|
# iteration 9
|
|
create table t1(a int) engine=maria transactional=0 ;
|
|
show create table t1;
|
|
Table Create Table
|
|
t1 CREATE TABLE `t1` (
|
|
`a` int(11) DEFAULT NULL
|
|
) ENGINE=MARIA DEFAULT CHARSET=latin1 PAGE_CHECKSUM=1 TRANSACTIONAL=0
|
|
Crashsafe: no
|
|
alter table t1 transactional=1 ;
|
|
show create table t1;
|
|
Table Create Table
|
|
t1 CREATE TABLE `t1` (
|
|
`a` int(11) DEFAULT NULL
|
|
) ENGINE=MARIA DEFAULT CHARSET=latin1 PAGE_CHECKSUM=1 TRANSACTIONAL=1
|
|
Crashsafe: yes
|
|
drop table t1;
|
|
# iteration 10
|
|
create table t1(a int) engine=maria transactional=0 ;
|
|
show create table t1;
|
|
Table Create Table
|
|
t1 CREATE TABLE `t1` (
|
|
`a` int(11) DEFAULT NULL
|
|
) ENGINE=MARIA DEFAULT CHARSET=latin1 PAGE_CHECKSUM=1 TRANSACTIONAL=0
|
|
Crashsafe: no
|
|
alter table t1 engine=maria ;
|
|
show create table t1;
|
|
Table Create Table
|
|
t1 CREATE TABLE `t1` (
|
|
`a` int(11) DEFAULT NULL
|
|
) ENGINE=MARIA DEFAULT CHARSET=latin1 PAGE_CHECKSUM=1 TRANSACTIONAL=0
|
|
Crashsafe: no
|
|
drop table t1;
|
|
# iteration 11
|
|
create table t1(a int) engine=maria transactional=0 ;
|
|
show create table t1;
|
|
Table Create Table
|
|
t1 CREATE TABLE `t1` (
|
|
`a` int(11) DEFAULT NULL
|
|
) ENGINE=MARIA DEFAULT CHARSET=latin1 PAGE_CHECKSUM=1 TRANSACTIONAL=0
|
|
Crashsafe: no
|
|
alter table t1 engine=maria transactional=0 ;
|
|
show create table t1;
|
|
Table Create Table
|
|
t1 CREATE TABLE `t1` (
|
|
`a` int(11) DEFAULT NULL
|
|
) ENGINE=MARIA DEFAULT CHARSET=latin1 PAGE_CHECKSUM=1 TRANSACTIONAL=0
|
|
Crashsafe: no
|
|
drop table t1;
|
|
# iteration 12
|
|
create table t1(a int) engine=maria transactional=0 ;
|
|
show create table t1;
|
|
Table Create Table
|
|
t1 CREATE TABLE `t1` (
|
|
`a` int(11) DEFAULT NULL
|
|
) ENGINE=MARIA DEFAULT CHARSET=latin1 PAGE_CHECKSUM=1 TRANSACTIONAL=0
|
|
Crashsafe: no
|
|
alter table t1 engine=maria transactional=1 ;
|
|
show create table t1;
|
|
Table Create Table
|
|
t1 CREATE TABLE `t1` (
|
|
`a` int(11) DEFAULT NULL
|
|
) ENGINE=MARIA DEFAULT CHARSET=latin1 PAGE_CHECKSUM=1 TRANSACTIONAL=1
|
|
Crashsafe: yes
|
|
drop table t1;
|
|
# iteration 13
|
|
create table t1(a int) engine=maria transactional=1 ;
|
|
show create table t1;
|
|
Table Create Table
|
|
t1 CREATE TABLE `t1` (
|
|
`a` int(11) DEFAULT NULL
|
|
) ENGINE=MARIA DEFAULT CHARSET=latin1 PAGE_CHECKSUM=1 TRANSACTIONAL=1
|
|
Crashsafe: yes
|
|
alter table t1 modify a bigint ;
|
|
show create table t1;
|
|
Table Create Table
|
|
t1 CREATE TABLE `t1` (
|
|
`a` bigint(20) DEFAULT NULL
|
|
) ENGINE=MARIA DEFAULT CHARSET=latin1 PAGE_CHECKSUM=1 TRANSACTIONAL=1
|
|
Crashsafe: yes
|
|
drop table t1;
|
|
# iteration 14
|
|
create table t1(a int) engine=maria transactional=1 ;
|
|
show create table t1;
|
|
Table Create Table
|
|
t1 CREATE TABLE `t1` (
|
|
`a` int(11) DEFAULT NULL
|
|
) ENGINE=MARIA DEFAULT CHARSET=latin1 PAGE_CHECKSUM=1 TRANSACTIONAL=1
|
|
Crashsafe: yes
|
|
alter table t1 transactional=0 ;
|
|
show create table t1;
|
|
Table Create Table
|
|
t1 CREATE TABLE `t1` (
|
|
`a` int(11) DEFAULT NULL
|
|
) ENGINE=MARIA DEFAULT CHARSET=latin1 PAGE_CHECKSUM=1 TRANSACTIONAL=0
|
|
Crashsafe: no
|
|
drop table t1;
|
|
# iteration 15
|
|
create table t1(a int) engine=maria transactional=1 ;
|
|
show create table t1;
|
|
Table Create Table
|
|
t1 CREATE TABLE `t1` (
|
|
`a` int(11) DEFAULT NULL
|
|
) ENGINE=MARIA DEFAULT CHARSET=latin1 PAGE_CHECKSUM=1 TRANSACTIONAL=1
|
|
Crashsafe: yes
|
|
alter table t1 transactional=1 ;
|
|
show create table t1;
|
|
Table Create Table
|
|
t1 CREATE TABLE `t1` (
|
|
`a` int(11) DEFAULT NULL
|
|
) ENGINE=MARIA DEFAULT CHARSET=latin1 PAGE_CHECKSUM=1 TRANSACTIONAL=1
|
|
Crashsafe: yes
|
|
drop table t1;
|
|
# iteration 16
|
|
create table t1(a int) engine=maria transactional=1 ;
|
|
show create table t1;
|
|
Table Create Table
|
|
t1 CREATE TABLE `t1` (
|
|
`a` int(11) DEFAULT NULL
|
|
) ENGINE=MARIA DEFAULT CHARSET=latin1 PAGE_CHECKSUM=1 TRANSACTIONAL=1
|
|
Crashsafe: yes
|
|
alter table t1 engine=maria ;
|
|
show create table t1;
|
|
Table Create Table
|
|
t1 CREATE TABLE `t1` (
|
|
`a` int(11) DEFAULT NULL
|
|
) ENGINE=MARIA DEFAULT CHARSET=latin1 PAGE_CHECKSUM=1 TRANSACTIONAL=1
|
|
Crashsafe: yes
|
|
drop table t1;
|
|
# iteration 17
|
|
create table t1(a int) engine=maria transactional=1 ;
|
|
show create table t1;
|
|
Table Create Table
|
|
t1 CREATE TABLE `t1` (
|
|
`a` int(11) DEFAULT NULL
|
|
) ENGINE=MARIA DEFAULT CHARSET=latin1 PAGE_CHECKSUM=1 TRANSACTIONAL=1
|
|
Crashsafe: yes
|
|
alter table t1 engine=maria transactional=0 ;
|
|
show create table t1;
|
|
Table Create Table
|
|
t1 CREATE TABLE `t1` (
|
|
`a` int(11) DEFAULT NULL
|
|
) ENGINE=MARIA DEFAULT CHARSET=latin1 PAGE_CHECKSUM=1 TRANSACTIONAL=0
|
|
Crashsafe: no
|
|
drop table t1;
|
|
# iteration 18
|
|
create table t1(a int) engine=maria transactional=1 ;
|
|
show create table t1;
|
|
Table Create Table
|
|
t1 CREATE TABLE `t1` (
|
|
`a` int(11) DEFAULT NULL
|
|
) ENGINE=MARIA DEFAULT CHARSET=latin1 PAGE_CHECKSUM=1 TRANSACTIONAL=1
|
|
Crashsafe: yes
|
|
alter table t1 engine=maria transactional=1 ;
|
|
show create table t1;
|
|
Table Create Table
|
|
t1 CREATE TABLE `t1` (
|
|
`a` int(11) DEFAULT NULL
|
|
) ENGINE=MARIA DEFAULT CHARSET=latin1 PAGE_CHECKSUM=1 TRANSACTIONAL=1
|
|
Crashsafe: yes
|
|
drop table t1;
|