mirror of
https://github.com/MariaDB/server.git
synced 2025-07-29 05:21:33 +03:00
Create 'main' test directory and move 't' and 'r' there
This commit is contained in:
85
mysql-test/main/row-checksum.result
Normal file
85
mysql-test/main/row-checksum.result
Normal file
@ -0,0 +1,85 @@
|
||||
drop table if exists t1;
|
||||
create table t1 (a int null, v varchar(100)) engine=myisam checksum=0;
|
||||
insert into t1 values(null, null), (1, "hello");
|
||||
checksum table t1;
|
||||
Table Checksum
|
||||
test.t1 229851577
|
||||
checksum table t1 quick;
|
||||
Table Checksum
|
||||
test.t1 NULL
|
||||
checksum table t1 extended;
|
||||
Table Checksum
|
||||
test.t1 229851577
|
||||
drop table if exists t1;
|
||||
create table t1 (a int null, v varchar(100)) engine=myisam checksum=1;
|
||||
insert into t1 values(null, null), (1, "hello");
|
||||
checksum table t1;
|
||||
Table Checksum
|
||||
test.t1 229851577
|
||||
checksum table t1 quick;
|
||||
Table Checksum
|
||||
test.t1 229851577
|
||||
checksum table t1 extended;
|
||||
Table Checksum
|
||||
test.t1 229851577
|
||||
drop table if exists t1;
|
||||
create table t1 (a int null, v varchar(100)) engine=innodb checksum=0;
|
||||
insert into t1 values(null, null), (1, "hello");
|
||||
checksum table t1;
|
||||
Table Checksum
|
||||
test.t1 229851577
|
||||
checksum table t1 quick;
|
||||
Table Checksum
|
||||
test.t1 NULL
|
||||
checksum table t1 extended;
|
||||
Table Checksum
|
||||
test.t1 229851577
|
||||
drop table t1;
|
||||
create table t1 (a int null, v varchar(100)) engine=maria checksum=0;
|
||||
insert into t1 values(null, null), (1, "hello");
|
||||
checksum table t1;
|
||||
Table Checksum
|
||||
test.t1 229851577
|
||||
checksum table t1 quick;
|
||||
Table Checksum
|
||||
test.t1 NULL
|
||||
checksum table t1 extended;
|
||||
Table Checksum
|
||||
test.t1 229851577
|
||||
drop table t1;
|
||||
create table t1 (a int null, v varchar(100)) engine=maria checksum=1;
|
||||
insert into t1 values(null, null), (1, "hello");
|
||||
checksum table t1;
|
||||
Table Checksum
|
||||
test.t1 229851577
|
||||
checksum table t1 quick;
|
||||
Table Checksum
|
||||
test.t1 229851577
|
||||
checksum table t1 extended;
|
||||
Table Checksum
|
||||
test.t1 229851577
|
||||
drop table t1;
|
||||
create table t1 (a int null, v varchar(100)) engine=myisam checksum=1 row_format=fixed;
|
||||
insert into t1 values(null, null), (1, "hello");
|
||||
checksum table t1;
|
||||
Table Checksum
|
||||
test.t1 3885665021
|
||||
checksum table t1 quick;
|
||||
Table Checksum
|
||||
test.t1 3885665021
|
||||
checksum table t1 extended;
|
||||
Table Checksum
|
||||
test.t1 3885665021
|
||||
drop table if exists t1;
|
||||
create table t1 (a int null, v varchar(100)) engine=innodb checksum=0 row_format=compact;
|
||||
insert into t1 values(null, null), (1, "hello");
|
||||
checksum table t1;
|
||||
Table Checksum
|
||||
test.t1 229851577
|
||||
checksum table t1 quick;
|
||||
Table Checksum
|
||||
test.t1 NULL
|
||||
checksum table t1 extended;
|
||||
Table Checksum
|
||||
test.t1 229851577
|
||||
drop table t1;
|
Reference in New Issue
Block a user