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
421bbdcf
Commit
421bbdcf
authored
Dec 18, 2012
by
unknown
Browse files
Options
Browse Files
Download
Plain Diff
Merge a couple more fixes from 10.0-base to 10.0
parents
5fe8e9f2
490d2a42
Changes
8
Hide whitespace changes
Inline
Side-by-side
Showing
8 changed files
with
17 additions
and
11 deletions
+17
-11
mysql-test/include/have_debug_sync.inc
mysql-test/include/have_debug_sync.inc
+3
-2
mysql-test/include/not_openssl.inc
mysql-test/include/not_openssl.inc
+0
-4
mysql-test/include/not_ssl.inc
mysql-test/include/not_ssl.inc
+4
-0
mysql-test/r/not_openssl.require
mysql-test/r/not_openssl.require
+0
-2
mysql-test/t/func_encrypt_nossl.test
mysql-test/t/func_encrypt_nossl.test
+1
-1
sql/mysqld.cc
sql/mysqld.cc
+7
-1
sql/set_var.h
sql/set_var.h
+1
-0
sql/sys_vars.cc
sql/sys_vars.cc
+1
-1
No files found.
mysql-test/include/have_debug_sync.inc
View file @
421bbdcf
if
(
`select @@debug_sync not like 'ON %'`
)
{
--
skip
Needs
a
debug_sync
enabled
if
(
`SELECT COUNT(*) = 0 FROM information_schema.session_variables WHERE
variable_name = 'debug_sync' AND variable_value LIKE 'ON %'`
)
{
--
skip
Needs
debug_sync
enabled
}
mysql-test/include/not_openssl.inc
deleted
100644 → 0
View file @
5fe8e9f2
--
require
r
/
not_openssl
.
require
disable_query_log
;
show
variables
like
"have_openssl"
;
enable_query_log
;
mysql-test/include/not_ssl.inc
0 → 100644
View file @
421bbdcf
if
(
`select @@have_ssl = 'YES'`
)
{
skip
only
without
SSL
;
}
mysql-test/r/not_openssl.require
deleted
100644 → 0
View file @
5fe8e9f2
Variable_name Value
have_openssl NO
mysql-test/t/func_encrypt_nossl.test
View file @
421bbdcf
--
source
include
/
not_
open
ssl
.
inc
--
source
include
/
not_ssl
.
inc
#
# Test output from des_encrypt and des_decrypt when server is
...
...
sql/mysqld.cc
View file @
421bbdcf
...
...
@@ -660,6 +660,7 @@ SHOW_COMP_OPTION have_ssl, have_symlink, have_dlopen, have_query_cache;
SHOW_COMP_OPTION
have_geometry
,
have_rtree_keys
;
SHOW_COMP_OPTION
have_crypt
,
have_compress
;
SHOW_COMP_OPTION
have_profiling
;
SHOW_COMP_OPTION
have_openssl
;
/* Thread specific variables */
...
...
@@ -7600,8 +7601,13 @@ static int mysql_init_variables(void)
#if defined(HAVE_OPENSSL) && !defined(EMBEDDED_LIBRARY)
have_ssl
=
SHOW_OPTION_YES
;
#if HAVE_YASSL
have_openssl
=
SHOW_OPTION_NO
;
#else
have_ssl
=
SHOW_OPTION_NO
;
have_openssl
=
SHOW_OPTION_YES
;
#endif
#else
have_openssl
=
have_ssl
=
SHOW_OPTION_NO
;
#endif
#ifdef HAVE_BROKEN_REALPATH
have_symlink
=
SHOW_OPTION_NO
;
...
...
sql/set_var.h
View file @
421bbdcf
...
...
@@ -299,6 +299,7 @@ extern SHOW_COMP_OPTION have_query_cache;
extern
SHOW_COMP_OPTION
have_geometry
,
have_rtree_keys
;
extern
SHOW_COMP_OPTION
have_crypt
;
extern
SHOW_COMP_OPTION
have_compress
;
extern
SHOW_COMP_OPTION
have_openssl
;
/*
Prototypes for helper functions
...
...
sql/sys_vars.cc
View file @
421bbdcf
...
...
@@ -3326,7 +3326,7 @@ static Sys_var_have Sys_have_geometry(
static
Sys_var_have
Sys_have_openssl
(
"have_openssl"
,
"have_openssl"
,
READ_ONLY
GLOBAL_VAR
(
have_ssl
),
NO_CMD_LINE
);
READ_ONLY
GLOBAL_VAR
(
have_
open
ssl
),
NO_CMD_LINE
);
static
Sys_var_have
Sys_have_profiling
(
"have_profiling"
,
"have_profiling"
,
...
...
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