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
1aad903b
Commit
1aad903b
authored
Dec 18, 2006
by
unknown
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Use MYSQLTEST_VARDIR variable
parent
607af5c6
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
6 deletions
+6
-6
mysql-test/r/symlink.result
mysql-test/r/symlink.result
+2
-2
mysql-test/t/symlink.test
mysql-test/t/symlink.test
+4
-4
No files found.
mysql-test/r/symlink.result
View file @
1aad903b
...
...
@@ -115,12 +115,12 @@ show create table t1;
Table Create Table
t1 CREATE TEMPORARY TABLE `t1` (
`a` int(11) default NULL
) ENGINE=MyISAM DEFAULT CHARSET=latin1 DATA DIRECTORY='MYSQL
_TEST_DIR/var
/log/'
) ENGINE=MyISAM DEFAULT CHARSET=latin1 DATA DIRECTORY='MYSQL
TEST_VARDIR
/log/'
show create table t1;
Table Create Table
t1 CREATE TEMPORARY TABLE `t1` (
`a` int(11) default NULL
) ENGINE=MyISAM DEFAULT CHARSET=latin1 DATA DIRECTORY='MYSQL
_TEST_DIR/var
/log/'
) ENGINE=MyISAM DEFAULT CHARSET=latin1 DATA DIRECTORY='MYSQL
TEST_VARDIR
/log/'
create table t1 (a int) engine=myisam select 42 a;
select * from t1;
a
...
...
mysql-test/t/symlink.test
View file @
1aad903b
...
...
@@ -147,20 +147,20 @@ connect (session2,localhost,root,,);
connection
session1
;
disable_query_log
;
eval
create
temporary
table
t1
(
a
int
)
engine
=
myisam
data
directory
=
"
$MYSQL
_TEST_DIR
/var
/log"
select
9
a
;
eval
create
temporary
table
t1
(
a
int
)
engine
=
myisam
data
directory
=
"
$MYSQL
TEST_VARDIR
/log"
select
9
a
;
enable_query_log
;
# If running test suite with a non standard tmp dir, the "show create table"
# will print "DATA_DIRECTORY=". Use replace_result to mask it out
--
replace_result
$MYSQL
_TEST_DIR
MYSQL_TEST_
DIR
--
replace_result
$MYSQL
TEST_VARDIR
MYSQLTEST_VAR
DIR
show
create
table
t1
;
connection
session2
;
disable_query_log
;
eval
create
temporary
table
t1
(
a
int
)
engine
=
myisam
data
directory
=
"
$MYSQL
_TEST_DIR
/var
/log"
select
99
a
;
eval
create
temporary
table
t1
(
a
int
)
engine
=
myisam
data
directory
=
"
$MYSQL
TEST_VARDIR
/log"
select
99
a
;
enable_query_log
;
# If running test suite with a non standard tmp dir, the "show create table"
# will print "DATA_DIRECTORY=". Use replace_result to mask it out
--
replace_result
$MYSQL
_TEST_DIR
MYSQL_TEST_
DIR
--
replace_result
$MYSQL
TEST_VARDIR
MYSQLTEST_VAR
DIR
show
create
table
t1
;
connection
default
;
...
...
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