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
3b1adb50
Commit
3b1adb50
authored
Aug 26, 2008
by
Alexey Botchkov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
merging fixes
parent
8d3eb141
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
6 deletions
+4
-6
mysql-test/r/symlink.result
mysql-test/r/symlink.result
+0
-2
mysql-test/t/symlink.test
mysql-test/t/symlink.test
+4
-4
No files found.
mysql-test/r/symlink.result
View file @
3b1adb50
...
...
@@ -57,8 +57,6 @@ t9 CREATE TABLE `t9` (
Got one of the listed errors
Got one of the listed errors
Got one of the listed errors
Got one of the listed errors
Got one of the listed errors
alter table t9 rename mysqltest.t9;
select count(*) from mysqltest.t9;
count(*)
...
...
mysql-test/t/symlink.test
View file @
3b1adb50
...
...
@@ -71,8 +71,6 @@ drop table t1;
SHOW
CREATE
TABLE
t9
;
disable_query_log
;
--
error
1210
,
1210
create
table
t1
(
a
int
not
null
auto_increment
,
b
char
(
16
)
not
null
,
primary
key
(
a
))
engine
=
myisam
data
directory
=
"tmp"
;
# Check that we cannot link over a table from another database.
...
...
@@ -81,8 +79,9 @@ create database mysqltest;
--
error
1
,
1
create
table
mysqltest
.
t9
(
a
int
not
null
auto_increment
,
b
char
(
16
)
not
null
,
primary
key
(
a
))
engine
=
myisam
index
directory
=
"/this-dir-does-not-exist"
;
--
error
1210
,
1210
create
table
mysqltest
.
t9
(
a
int
not
null
auto_increment
,
b
char
(
16
)
not
null
,
primary
key
(
a
))
engine
=
myisam
index
directory
=
"not-hard-path"
;
# temporarily disabled as it returns different result in the embedded server
# --error 1210, 1210
# create table mysqltest.t9 (a int not null auto_increment, b char(16) not null, primary key (a)) engine=myisam index directory="not-hard-path";
# Should fail becasue the file t9.MYI already exist in 'run'
--
error
1
,
1
,
1105
...
...
@@ -230,6 +229,7 @@ SET SESSION keep_files_on_create = TRUE;
EOF
--
disable_abort_on_error
--
error
1
--
replace_result
$MYSQLTEST_VARDIR
.
master
-
data
/
''
CREATE
TABLE
t1
(
a
INT
)
ENGINE
MYISAM
;
--
error
0
,
1
--
remove_file
$MYSQLTEST_VARDIR
/
master
-
data
/
test
/
t1
.
MYD
;
...
...
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