Remove non portable exec's from csv.test
This commit is contained in:
parent
f65cb65d23
commit
afd6fb94e0
@ -5007,7 +5007,6 @@ Warnings:
|
|||||||
Error 1194 Table 'test_repair_table2' is marked as crashed and should be repaired
|
Error 1194 Table 'test_repair_table2' is marked as crashed and should be repaired
|
||||||
SELECT * from test_repair_table2;
|
SELECT * from test_repair_table2;
|
||||||
val
|
val
|
||||||
test_repair_table2.CSM
|
|
||||||
CHECK TABLE test_repair_table2;
|
CHECK TABLE test_repair_table2;
|
||||||
Table Op Msg_type Msg_text
|
Table Op Msg_type Msg_text
|
||||||
test.test_repair_table2 check status OK
|
test.test_repair_table2 check status OK
|
||||||
@ -5210,15 +5209,9 @@ create table bug22080_3 (id int,string varchar(64)) Engine=CSV;
|
|||||||
insert into bug22080_1 values(1,'string');
|
insert into bug22080_1 values(1,'string');
|
||||||
insert into bug22080_1 values(2,'string');
|
insert into bug22080_1 values(2,'string');
|
||||||
insert into bug22080_1 values(3,'string');
|
insert into bug22080_1 values(3,'string');
|
||||||
1,"string"
|
|
||||||
2","string"
|
|
||||||
3,"string"
|
|
||||||
check table bug22080_2;
|
check table bug22080_2;
|
||||||
Table Op Msg_type Msg_text
|
Table Op Msg_type Msg_text
|
||||||
test.bug22080_2 check error Corrupt
|
test.bug22080_2 check error Corrupt
|
||||||
1,"string"
|
|
||||||
2,"string"
|
|
||||||
3,"string"
|
|
||||||
check table bug22080_3;
|
check table bug22080_3;
|
||||||
Table Op Msg_type Msg_text
|
Table Op Msg_type Msg_text
|
||||||
test.bug22080_3 check error Corrupt
|
test.bug22080_3 check error Corrupt
|
||||||
|
@ -1406,7 +1406,7 @@ DROP TABLE test_repair_table;
|
|||||||
#
|
#
|
||||||
|
|
||||||
CREATE TABLE test_repair_table2 ( val integer ) ENGINE = CSV;
|
CREATE TABLE test_repair_table2 ( val integer ) ENGINE = CSV;
|
||||||
--exec rm $MYSQLTEST_VARDIR/master-data/test/test_repair_table2.CSM
|
--remove_file $MYSQLTEST_VARDIR/master-data/test/test_repair_table2.CSM
|
||||||
|
|
||||||
# Should give a warning and perform autorepair. We also disable ps-protocol
|
# Should give a warning and perform autorepair. We also disable ps-protocol
|
||||||
# here, as mysql-test eats up warnings in ps-protocol mode
|
# here, as mysql-test eats up warnings in ps-protocol mode
|
||||||
@ -1416,15 +1416,19 @@ SELECT * from test_repair_table2;
|
|||||||
--enable_ps_protocol
|
--enable_ps_protocol
|
||||||
# this should work ok, as the table is already repaired
|
# this should work ok, as the table is already repaired
|
||||||
SELECT * from test_repair_table2;
|
SELECT * from test_repair_table2;
|
||||||
# check that the metafile appeared again. chop the path to it
|
# check that the metafile appeared again.
|
||||||
--exec ls $MYSQLTEST_VARDIR/master-data/test/test_repair_table2.CSM | perl -pi -e "s/.*\///"
|
--file_exists $MYSQLTEST_VARDIR/master-data/test/test_repair_table2.CSM
|
||||||
CHECK TABLE test_repair_table2;
|
CHECK TABLE test_repair_table2;
|
||||||
DROP TABLE test_repair_table2;
|
DROP TABLE test_repair_table2;
|
||||||
|
|
||||||
|
|
||||||
# Corrupt csv file and see if we can repair it
|
# Corrupt csv file and see if we can repair it
|
||||||
CREATE TABLE test_repair_table3 ( val integer ) ENGINE = CSV;
|
CREATE TABLE test_repair_table3 ( val integer ) ENGINE = CSV;
|
||||||
--exec perl -e 'print "\"1\"\n\"4\"\n\"3";' > $MYSQLTEST_VARDIR/master-data/test/test_repair_table3.CSV
|
--write_file $MYSQLTEST_VARDIR/master-data/test/test_repair_table3.CSV
|
||||||
|
"1"
|
||||||
|
"4"
|
||||||
|
"3
|
||||||
|
EOF
|
||||||
CHECK TABLE test_repair_table3;
|
CHECK TABLE test_repair_table3;
|
||||||
REPAIR TABLE test_repair_table3;
|
REPAIR TABLE test_repair_table3;
|
||||||
SELECT * FROM test_repair_table3;
|
SELECT * FROM test_repair_table3;
|
||||||
@ -1439,7 +1443,7 @@ CREATE TABLE test_repair_table4 (
|
|||||||
founded char(4) DEFAULT '' NOT NULL
|
founded char(4) DEFAULT '' NOT NULL
|
||||||
) ENGINE = CSV;
|
) ENGINE = CSV;
|
||||||
|
|
||||||
--exec rm $MYSQLTEST_VARDIR/master-data/test/test_repair_table4.CSM
|
--remove_file $MYSQLTEST_VARDIR/master-data/test/test_repair_table4.CSM
|
||||||
--disable_ps_protocol
|
--disable_ps_protocol
|
||||||
SELECT * FROM test_repair_table4;
|
SELECT * FROM test_repair_table4;
|
||||||
--enable_ps_protocol
|
--enable_ps_protocol
|
||||||
@ -1472,7 +1476,9 @@ CREATE TABLE test_repair_table5 (
|
|||||||
) ENGINE = CSV;
|
) ENGINE = CSV;
|
||||||
|
|
||||||
# Corrupt a table -- put a file with wrong # of columns
|
# Corrupt a table -- put a file with wrong # of columns
|
||||||
--exec perl -e 'print "\"1\",\"101\",\"IBM\"\n";' > $MYSQLTEST_VARDIR/master-data/test/test_repair_table5.CSV
|
--write_file $MYSQLTEST_VARDIR/master-data/test/test_repair_table5.CSV
|
||||||
|
"1","101","IBM"
|
||||||
|
EOF
|
||||||
|
|
||||||
CHECK TABLE test_repair_table5;
|
CHECK TABLE test_repair_table5;
|
||||||
REPAIR TABLE test_repair_table5;
|
REPAIR TABLE test_repair_table5;
|
||||||
@ -1481,7 +1487,9 @@ INSERT INTO test_repair_table5 VALUES (1, 102, "CORRECT", 1876);
|
|||||||
SELECT * FROM test_repair_table5;
|
SELECT * FROM test_repair_table5;
|
||||||
|
|
||||||
# Corrupt a table -- put a row with wrong # of columns at end of file
|
# Corrupt a table -- put a row with wrong # of columns at end of file
|
||||||
--exec perl -e 'print "\"1\",\"101\",\"IBM\"\n";' >> $MYSQLTEST_VARDIR/master-data/test/test_repair_table5.CSV
|
--append_file $MYSQLTEST_VARDIR/master-data/test/test_repair_table5.CSV
|
||||||
|
"1","101","IBM"
|
||||||
|
EOF
|
||||||
|
|
||||||
FLUSH TABLES;
|
FLUSH TABLES;
|
||||||
CHECK TABLE test_repair_table5;
|
CHECK TABLE test_repair_table5;
|
||||||
@ -1492,7 +1500,9 @@ INSERT INTO test_repair_table5 VALUES (1, 102, "CORRECT2", 1876);
|
|||||||
SELECT * FROM test_repair_table5;
|
SELECT * FROM test_repair_table5;
|
||||||
|
|
||||||
# Corrupt table again -- put a row with wrong # of columns at end of file
|
# Corrupt table again -- put a row with wrong # of columns at end of file
|
||||||
--exec perl -e 'print "\"1\",\"101\",\"IBM\"\n";' >> $MYSQLTEST_VARDIR/master-data/test/test_repair_table5.CSV
|
--append_file $MYSQLTEST_VARDIR/master-data/test/test_repair_table5.CSV
|
||||||
|
"1","101","IBM"
|
||||||
|
EOF
|
||||||
|
|
||||||
FLUSH TABLES;
|
FLUSH TABLES;
|
||||||
CHECK TABLE test_repair_table5;
|
CHECK TABLE test_repair_table5;
|
||||||
@ -1573,13 +1583,15 @@ drop table t1;
|
|||||||
|
|
||||||
create table bug15205 (val int(11) default null) engine=csv;
|
create table bug15205 (val int(11) default null) engine=csv;
|
||||||
create table bug15205_2 (val int(11) default null) engine=csv;
|
create table bug15205_2 (val int(11) default null) engine=csv;
|
||||||
--exec rm $MYSQLTEST_VARDIR/master-data/test/bug15205.CSV
|
--remove_file $MYSQLTEST_VARDIR/master-data/test/bug15205.CSV
|
||||||
# system error (can't open the datafile)
|
# system error (can't open the datafile)
|
||||||
--replace_result $MYSQLTEST_VARDIR . master-data/ ''
|
--replace_result $MYSQLTEST_VARDIR . master-data/ ''
|
||||||
--error 13
|
--error 13
|
||||||
select * from bug15205;
|
select * from bug15205;
|
||||||
select * from bug15205_2;
|
select * from bug15205_2;
|
||||||
--exec touch $MYSQLTEST_VARDIR/master-data/test/bug15205.CSV
|
# Create empty file
|
||||||
|
--write_file $MYSQLTEST_VARDIR/master-data/test/bug15205.CSV
|
||||||
|
EOF
|
||||||
select * from bug15205;
|
select * from bug15205;
|
||||||
drop table bug15205;
|
drop table bug15205;
|
||||||
drop table bug15205_2;
|
drop table bug15205_2;
|
||||||
@ -1595,14 +1607,22 @@ insert into bug22080_1 values(1,'string');
|
|||||||
insert into bug22080_1 values(2,'string');
|
insert into bug22080_1 values(2,'string');
|
||||||
insert into bug22080_1 values(3,'string');
|
insert into bug22080_1 values(3,'string');
|
||||||
|
|
||||||
# Currupt the file as described in the bug report
|
# Create first corrupt file as described in bug report
|
||||||
--exec sed -e 's/2/2"/' $MYSQLTEST_VARDIR/master-data/test/bug22080_1.CSV > $MYSQLTEST_VARDIR/master-data/test/bug22080_2.CSV
|
--write_file $MYSQLTEST_VARDIR/master-data/test/bug22080_2.CSV
|
||||||
--exec sed -e 's/2","/2",/' $MYSQLTEST_VARDIR/master-data/test/bug22080_1.CSV > $MYSQLTEST_VARDIR/master-data/test/bug22080_3.CSV
|
1,"string"
|
||||||
|
2","string"
|
||||||
|
3,"string"
|
||||||
|
EOF
|
||||||
|
|
||||||
|
# Create second corrupt file as described in bug report
|
||||||
|
--write_file $MYSQLTEST_VARDIR/master-data/test/bug22080_3.CSV
|
||||||
|
1,"string"
|
||||||
|
"2",string"
|
||||||
|
3,"string"
|
||||||
|
EOF
|
||||||
|
|
||||||
--exec cat $MYSQLTEST_VARDIR/master-data/test/bug22080_2.CSV
|
|
||||||
check table bug22080_2;
|
check table bug22080_2;
|
||||||
|
|
||||||
--exec cat $MYSQLTEST_VARDIR/master-data/test/bug22080_3.CSV
|
|
||||||
check table bug22080_3;
|
check table bug22080_3;
|
||||||
|
|
||||||
drop tables bug22080_1,bug22080_2,bug22080_3;
|
drop tables bug22080_1,bug22080_2,bug22080_3;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user