Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
M
mariadb
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
mariadb
Commits
a5eab2c6
Commit
a5eab2c6
authored
Aug 08, 2007
by
msvensson@pilot.(none)
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Remove file before writing to it.
parent
5e4b4ca6
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
0 deletions
+5
-0
mysql-test/t/csv.test
mysql-test/t/csv.test
+5
-0
No files found.
mysql-test/t/csv.test
View file @
a5eab2c6
...
...
@@ -1424,6 +1424,7 @@ DROP TABLE test_repair_table2;
# Corrupt csv file and see if we can repair it
CREATE
TABLE
test_repair_table3
(
val
integer
)
ENGINE
=
CSV
;
--
remove_file
$MYSQLTEST_VARDIR
/
master
-
data
/
test
/
test_repair_table3
.
CSV
--
write_file
$MYSQLTEST_VARDIR
/
master
-
data
/
test
/
test_repair_table3
.
CSV
"1"
"4"
...
...
@@ -1476,6 +1477,7 @@ CREATE TABLE test_repair_table5 (
) ENGINE = CSV;
# Corrupt a table -- put a file with wrong # of columns
--remove_file
$MYSQLTEST_VARDIR
/master-data/test/test_repair_table5.CSV
--write_file
$MYSQLTEST_VARDIR
/master-data/test/test_repair_table5.CSV
"
1
","
101
","
IBM
"
EOF
...
...
@@ -1629,6 +1631,7 @@ insert into bug22080_1 values(2,'string');
insert into bug22080_1 values(3,'string');
# Create first corrupt file as described in bug report
--remove_file
$MYSQLTEST_VARDIR
/master-data/test/bug22080_2.CSV
--write_file
$MYSQLTEST_VARDIR
/master-data/test/bug22080_2.CSV
1,"
string
"
2"
,
"string"
...
...
@@ -1636,6 +1639,7 @@ insert into bug22080_1 values(3,'string');
EOF
# Create second corrupt file as described in bug report
--
remove_file
$MYSQLTEST_VARDIR
/
master
-
data
/
test
/
bug22080_3
.
CSV
--
write_file
$MYSQLTEST_VARDIR
/
master
-
data
/
test
/
bug22080_3
.
CSV
1
,
"string"
"2"
,
string
"
...
...
@@ -1696,6 +1700,7 @@ check table t1;
drop table t1;
create table t1(a int, b int) engine=csv;
--remove_file
$MYSQLTEST_VARDIR
/master-data/test/t1.CSV
--write_file
$MYSQLTEST_VARDIR
/master-data/test/t1.CSV
1, 1E-2
-2E2, .9
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment