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
e6afad88
Commit
e6afad88
authored
Sep 23, 2009
by
Satya B
Browse files
Options
Browse Files
Download
Plain Diff
merge to mysql-5.1-bugteam
parents
1eef7665
83bc7980
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
15 additions
and
2 deletions
+15
-2
mysql-test/r/windows.result
mysql-test/r/windows.result
+7
-0
mysql-test/t/windows.test
mysql-test/t/windows.test
+6
-0
sql/set_var.cc
sql/set_var.cc
+2
-2
No files found.
mysql-test/r/windows.result
View file @
e6afad88
...
...
@@ -53,3 +53,10 @@ ERROR HY000: No paths allowed for shared library
execute abc;
ERROR HY000: No paths allowed for shared library
deallocate prepare abc;
#
# Bug#45498: Socket variable not available on Windows
#
SELECT VARIABLE_NAME FROM INFORMATION_SCHEMA.GLOBAL_VARIABLES
WHERE VARIABLE_NAME = 'socket';
VARIABLE_NAME
SOCKET
mysql-test/t/windows.test
View file @
e6afad88
...
...
@@ -92,3 +92,9 @@ execute abc;
execute
abc
;
deallocate
prepare
abc
;
--
echo
#
--
echo
# Bug#45498: Socket variable not available on Windows
--
echo
#
SELECT
VARIABLE_NAME
FROM
INFORMATION_SCHEMA
.
GLOBAL_VARIABLES
WHERE
VARIABLE_NAME
=
'socket'
;
sql/set_var.cc
View file @
e6afad88
...
...
@@ -529,11 +529,11 @@ static sys_var_const sys_skip_networking(&vars, "skip_networking",
static
sys_var_const
sys_skip_show_database
(
&
vars
,
"skip_show_database"
,
OPT_GLOBAL
,
SHOW_BOOL
,
(
uchar
*
)
&
opt_skip_show_db
);
#ifdef HAVE_SYS_UN_H
static
sys_var_const
sys_socket
(
&
vars
,
"socket"
,
OPT_GLOBAL
,
SHOW_CHAR_PTR
,
(
uchar
*
)
&
mysqld_unix_port
);
#endif
#ifdef HAVE_THR_SETCONCURRENCY
/* purecov: begin tested */
static
sys_var_const
sys_thread_concurrency
(
&
vars
,
"thread_concurrency"
,
...
...
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