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
698b4937
Commit
698b4937
authored
Dec 08, 2005
by
unknown
Browse files
Options
Browse Files
Download
Plain Diff
Merge mysql.com:/Users/kent/mysql/bk/mysql-5.0-release
into mysql.com:/Users/kent/mysql/bk/mysql-5.0
parents
4d87cf98
51fd81ac
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
2 deletions
+4
-2
mysql-test/t/symlink.test
mysql-test/t/symlink.test
+2
-0
sql/mysqld.cc
sql/mysqld.cc
+2
-2
No files found.
mysql-test/t/symlink.test
View file @
698b4937
...
@@ -3,6 +3,8 @@ disable_query_log;
...
@@ -3,6 +3,8 @@ disable_query_log;
show
variables
like
"have_symlink"
;
show
variables
like
"have_symlink"
;
enable_query_log
;
enable_query_log
;
--
source
include
/
not_windows
.
inc
--
disable_warnings
--
disable_warnings
drop
table
if
exists
t1
,
t2
,
t7
,
t8
,
t9
;
drop
table
if
exists
t1
,
t2
,
t7
,
t8
,
t9
;
drop
database
if
exists
mysqltest
;
drop
database
if
exists
mysqltest
;
...
...
sql/mysqld.cc
View file @
698b4937
...
@@ -6358,7 +6358,7 @@ static void mysql_init_variables(void)
...
@@ -6358,7 +6358,7 @@ static void mysql_init_variables(void)
#else
#else
have_openssl
=
SHOW_OPTION_NO
;
have_openssl
=
SHOW_OPTION_NO
;
#endif
#endif
#if
!defined(HAVE_REALPATH) || defined(HAVE_BROKEN_REALPATH)
#if
def HAVE_BROKEN_REALPATH
have_symlink
=
SHOW_OPTION_NO
;
have_symlink
=
SHOW_OPTION_NO
;
#else
#else
have_symlink
=
SHOW_OPTION_YES
;
have_symlink
=
SHOW_OPTION_YES
;
...
@@ -7053,7 +7053,7 @@ static void get_options(int argc,char **argv)
...
@@ -7053,7 +7053,7 @@ static void get_options(int argc,char **argv)
usage
();
usage
();
exit
(
0
);
exit
(
0
);
}
}
#if
!defined(HAVE_REALPATH) ||
defined(HAVE_BROKEN_REALPATH)
#if defined(HAVE_BROKEN_REALPATH)
my_use_symdir
=
0
;
my_use_symdir
=
0
;
my_disable_symlinks
=
1
;
my_disable_symlinks
=
1
;
have_symlink
=
SHOW_OPTION_NO
;
have_symlink
=
SHOW_OPTION_NO
;
...
...
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