summaryrefslogtreecommitdiff
path: root/mysql-test/suite/storage_engine/checksum_table_live.result
blob: 59ab8f1688a2d9053b8fff7084f63de3f502dfb3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
DROP TABLE IF EXISTS t1,t2;
CREATE TABLE t1 (a <INT_COLUMN>, b <CHAR_COLUMN>) ENGINE=<STORAGE_ENGINE> <CUSTOM_TABLE_OPTIONS> CHECKSUM=1;
INSERT INTO t1 (a,b) VALUES (1,'a'),(2,'b');
CREATE TABLE t2 (a <INT_COLUMN>, b <CHAR_COLUMN>) ENGINE=<STORAGE_ENGINE> <CUSTOM_TABLE_OPTIONS> CHECKSUM=1;
CHECKSUM TABLE t1;
Table	Checksum
test.t1	4272806499
CHECKSUM TABLE t2, t1;
Table	Checksum
test.t2	0
test.t1	4272806499
CHECKSUM TABLE t1, t2 QUICK;
Table	Checksum
test.t1	4272806499
test.t2	0
CHECKSUM TABLE t1, t2 EXTENDED;
Table	Checksum
test.t1	4272806499
test.t2	0
DROP TABLE t1, t2;