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
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
nexedi
MariaDB
Commits
fe8cf8fd
Commit
fe8cf8fd
authored
Oct 30, 2017
by
Alexey Botchkov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Embedded tests fixed.
parent
f88fcf25
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
14 additions
and
2 deletions
+14
-2
mysql-test/suite/sys_vars/r/sysvars_server_embedded.result
mysql-test/suite/sys_vars/r/sysvars_server_embedded.result
+14
-0
sql/sys_vars.cc
sql/sys_vars.cc
+0
-2
No files found.
mysql-test/suite/sys_vars/r/sysvars_server_embedded.result
View file @
fe8cf8fd
...
...
@@ -122,6 +122,20 @@ NUMERIC_BLOCK_SIZE NULL
ENUM_VALUE_LIST OFF,ON
READ_ONLY NO
COMMAND_LINE_ARGUMENT OPTIONAL
VARIABLE_NAME BIND_ADDRESS
SESSION_VALUE NULL
GLOBAL_VALUE 127.0.0.1
GLOBAL_VALUE_ORIGIN CONFIG
DEFAULT_VALUE
VARIABLE_SCOPE GLOBAL
VARIABLE_TYPE VARCHAR
VARIABLE_COMMENT IP address to bind to.
NUMERIC_MIN_VALUE NULL
NUMERIC_MAX_VALUE NULL
NUMERIC_BLOCK_SIZE NULL
ENUM_VALUE_LIST NULL
READ_ONLY YES
COMMAND_LINE_ARGUMENT REQUIRED
VARIABLE_NAME BINLOG_ANNOTATE_ROW_EVENTS
SESSION_VALUE ON
GLOBAL_VALUE ON
...
...
sql/sys_vars.cc
View file @
fe8cf8fd
...
...
@@ -382,12 +382,10 @@ static Sys_var_charptr Sys_basedir(
READ_ONLY
GLOBAL_VAR
(
mysql_home_ptr
),
CMD_LINE
(
REQUIRED_ARG
,
'b'
),
IN_FS_CHARSET
,
DEFAULT
(
0
));
#ifndef EMBEDDED_LIBRARY
static
Sys_var_charptr
Sys_my_bind_addr
(
"bind_address"
,
"IP address to bind to."
,
READ_ONLY
GLOBAL_VAR
(
my_bind_addr_str
),
CMD_LINE
(
REQUIRED_ARG
),
IN_FS_CHARSET
,
DEFAULT
(
0
));
#endif
static
Sys_var_ulonglong
Sys_binlog_cache_size
(
"binlog_cache_size"
,
"The size of the transactional cache for "
...
...
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