Commit 470ab744 authored by Rich Prohaska's avatar Rich Prohaska

#4625 fix check table results in common mysql tests refs[t:4625]

git-svn-id: file:///svn/mysql/tests/mysql-test@41028 c7de825b-a66e-492c-adef-691d508d4ae1
parent 8a98e587
......@@ -106,9 +106,6 @@ a
0
check table t1;
Table Op Msg_type Msg_text
test.t1 check info ./test/t1 primary=0 num=1
test.t1 check info ./test/t1 key=primary 0
test.t1 check info ./test/t1 key=primary 0 result=0
test.t1 check status OK
drop table t1;
create table t1 (a int not null auto_increment primary key);
......@@ -349,23 +346,14 @@ CREATE TABLE t1 ( a INT AUTO_INCREMENT, b BLOB, PRIMARY KEY (a,b(10)));
INSERT INTO t1 (b) VALUES ('aaaa');
CHECK TABLE t1;
Table Op Msg_type Msg_text
test.t1 check info ./test/t1 primary=0 num=1
test.t1 check info ./test/t1 key=primary 0
test.t1 check info ./test/t1 key=primary 0 result=0
test.t1 check status OK
INSERT INTO t1 (b) VALUES ('');
CHECK TABLE t1;
Table Op Msg_type Msg_text
test.t1 check info ./test/t1 primary=0 num=1
test.t1 check info ./test/t1 key=primary 0
test.t1 check info ./test/t1 key=primary 0 result=0
test.t1 check status OK
INSERT INTO t1 (b) VALUES ('bbbb');
CHECK TABLE t1;
Table Op Msg_type Msg_text
test.t1 check info ./test/t1 primary=0 num=1
test.t1 check info ./test/t1 key=primary 0
test.t1 check info ./test/t1 key=primary 0 result=0
test.t1 check status OK
DROP TABLE IF EXISTS t1;
CREATE TABLE `t1` (
......
......@@ -1006,17 +1006,11 @@ insert ignore into t (id,v) values (floor(rand()*1000),repeat('a',(32*1024*1024-
set global max_allowed_packet=@my_max_allowed_packet;
check table t;
Table Op Msg_type Msg_text
test.t check info ./test/t primary=0 num=1
test.t check info ./test/t key=primary 0
test.t check info ./test/t key=primary 0 result=0
test.t check status OK
optimize table t;
Table Op Msg_type Msg_text
test.t optimize status OK
check table t;
Table Op Msg_type Msg_text
test.t check info ./test/t primary=0 num=1
test.t check info ./test/t key=primary 0
test.t check info ./test/t key=primary 0 result=0
test.t check status OK
drop table t;
......@@ -1006,17 +1006,11 @@ insert into t (v) values (repeat('a',(32*1024*1024-4)*rand()));
set global max_allowed_packet=@my_max_allowed_packet;
check table t;
Table Op Msg_type Msg_text
test.t check info ./test/t primary=0 num=1
test.t check info ./test/t key=primary 0
test.t check info ./test/t key=primary 0 result=0
test.t check status OK
optimize table t;
Table Op Msg_type Msg_text
test.t optimize status OK
check table t;
Table Op Msg_type Msg_text
test.t check info ./test/t primary=0 num=1
test.t check info ./test/t key=primary 0
test.t check info ./test/t key=primary 0 result=0
test.t check status OK
drop table t;
......@@ -24,9 +24,6 @@ Table Op Msg_type Msg_text
test.t1 optimize status OK
check table t1;
Table Op Msg_type Msg_text
test.t1 check info ./test/t1 primary=0 num=1
test.t1 check info ./test/t1 key=primary 0
test.t1 check info ./test/t1 key=primary 0 result=0
test.t1 check status OK
delete from t1;
insert into t1 values("000101"),("691231"),("700101"),("991231"),("00000101"),("00010101"),("99991231"),("00101000000"),("691231000000"),("700101000000"),("991231235959"),("10000101000000"),("99991231235959"),("20030100000000"),("20030000000000");
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment