diff options
author | acurtis/antony@xiphis.org/ltamd64.xiphis.org <> | 2006-09-25 09:04:19 -0700 |
---|---|---|
committer | acurtis/antony@xiphis.org/ltamd64.xiphis.org <> | 2006-09-25 09:04:19 -0700 |
commit | f6129d68ceebae9fcd648efd242cf329bd962bbc (patch) | |
tree | d1891a956d9a39a1a126fabbc09577f4184773bb /mysql-test/r/csv.result | |
parent | 8b80901dcf4284f407a91557d2096ca380a5eeba (diff) | |
download | mariadb-git-f6129d68ceebae9fcd648efd242cf329bd962bbc.tar.gz |
Bug#22080
"CHECK fails to identify some corruption"
change to allow it to detect more errors in data format
Diffstat (limited to 'mysql-test/r/csv.result')
-rw-r--r-- | mysql-test/r/csv.result | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/mysql-test/r/csv.result b/mysql-test/r/csv.result index e342af32a80..222d4de8059 100644 --- a/mysql-test/r/csv.result +++ b/mysql-test/r/csv.result @@ -5205,3 +5205,22 @@ select * from bug15205; val drop table bug15205; drop table bug15205_2; +create table bug22080_1 (id int,string varchar(64)) Engine=CSV; +create table bug22080_2 (id int,string varchar(64)) Engine=CSV; +create table bug22080_3 (id int,string varchar(64)) Engine=CSV; +insert into bug22080_1 values(1,'string'); +insert into bug22080_1 values(2,'string'); +insert into bug22080_1 values(3,'string'); +"1","string" +2","string" +"3","string" +check table bug22080_2; +Table Op Msg_type Msg_text +test.bug22080_2 check error Corrupt +"1","string" +"2",string" +"3","string" +check table bug22080_3; +Table Op Msg_type Msg_text +test.bug22080_3 check error Corrupt +drop tables bug22080_1,bug22080_2,bug22080_3; |