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
2e4963c5
Commit
2e4963c5
authored
Aug 29, 2007
by
unknown
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Remove unportable use of "system rm"
parent
5819322b
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
mysql-test/t/myisam.test
mysql-test/t/myisam.test
+3
-3
No files found.
mysql-test/t/myisam.test
View file @
2e4963c5
...
@@ -1051,14 +1051,14 @@ eval set storage_engine=$default;
...
@@ -1051,14 +1051,14 @@ eval set storage_engine=$default;
# Test how DROP TABLE works if the index or data file doesn't exists
# Test how DROP TABLE works if the index or data file doesn't exists
create
table
t1
(
a
int
)
engine
=
myisam
;
create
table
t1
(
a
int
)
engine
=
myisam
;
system
rm
$MYSQLTEST_VARDIR
/
master
-
data
/
test
/
t1
.
MYI
;
remove_file
$MYSQLTEST_VARDIR
/
master
-
data
/
test
/
t1
.
MYI
;
drop
table
if
exists
t1
;
drop
table
if
exists
t1
;
create
table
t1
(
a
int
)
engine
=
myisam
;
create
table
t1
(
a
int
)
engine
=
myisam
;
system
rm
$MYSQLTEST_VARDIR
/
master
-
data
/
test
/
t1
.
MYI
;
remove_file
$MYSQLTEST_VARDIR
/
master
-
data
/
test
/
t1
.
MYI
;
--
error
1051
,
6
--
error
1051
,
6
drop
table
t1
;
drop
table
t1
;
create
table
t1
(
a
int
)
engine
=
myisam
;
create
table
t1
(
a
int
)
engine
=
myisam
;
system
rm
$MYSQLTEST_VARDIR
/
master
-
data
/
test
/
t1
.
MYD
;
remove_file
$MYSQLTEST_VARDIR
/
master
-
data
/
test
/
t1
.
MYD
;
--
error
1105
,
6
,
29
--
error
1105
,
6
,
29
drop
table
t1
;
drop
table
t1
;
--
error
1051
--
error
1051
...
...
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