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
a05b38c1
Commit
a05b38c1
authored
Feb 12, 2020
by
Vicențiu Ciorbaru
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
MDEV-18650: Options deprecated in previous versions - skip-bdb
Remove the option from mysqld --help text.
parent
8bbcaab1
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
3 additions
and
5 deletions
+3
-5
mysql-test/main/mysqld--help.result
mysql-test/main/mysqld--help.result
+0
-2
sql/mysqld.cc
sql/mysqld.cc
+2
-3
sql/upgrade_conf_file.cc
sql/upgrade_conf_file.cc
+1
-0
No files found.
mysql-test/main/mysqld--help.result
View file @
a05b38c1
...
...
@@ -1120,8 +1120,6 @@ The following specify which files/extra groups are read (specified before remain
Show user and password in SHOW SLAVE HOSTS on this
master.
--silent-startup Don't print [Note] to the error log during startup.
--skip-bdb Deprecated option; Exist only for compatibility with old
my.cnf files
--skip-grant-tables Start without grant tables. This gives all users FULL
ACCESS to all tables.
--skip-host-cache Don't cache host names.
...
...
sql/mysqld.cc
View file @
a05b38c1
...
...
@@ -5050,6 +5050,8 @@ static int init_server_components()
compatibility, but do not have any effect otherwise, they behave
as if supplied with --loose. Whenever a deprecated option is removed
it should be appended here. */
{
"skip-bdb"
,
OPT_DEPRECATED_OPTION
,
""
,
0
,
0
,
0
,
GET_NO_ARG
,
NO_ARG
,
0
,
0
,
0
,
0
,
0
,
0
},
{
"thread-concurrency"
,
OPT_DEPRECATED_OPTION
,
""
,
0
,
0
,
0
,
GET_NO_ARG
,
OPT_ARG
,
0
,
0
,
0
,
0
,
0
,
0
},
{
"timed-mutexes"
,
OPT_DEPRECATED_OPTION
,
""
,
...
...
@@ -6738,9 +6740,6 @@ struct my_option my_long_options[]=
GET_BOOL
,
NO_ARG
,
0
,
0
,
0
,
0
,
0
,
0
},
{
"silent-startup"
,
OPT_SILENT
,
"Don't print [Note] to the error log during startup."
,
&
opt_silent_startup
,
&
opt_silent_startup
,
0
,
GET_BOOL
,
NO_ARG
,
0
,
0
,
0
,
0
,
0
,
0
},
{
"skip-bdb"
,
OPT_DEPRECATED_OPTION
,
"Deprecated option; Exist only for compatibility with old my.cnf files"
,
0
,
0
,
0
,
GET_NO_ARG
,
NO_ARG
,
0
,
0
,
0
,
0
,
0
,
0
},
#ifndef DISABLE_GRANT_OPTIONS
{
"skip-grant-tables"
,
0
,
"Start without grant tables. This gives all users FULL ACCESS to all tables."
,
...
...
sql/upgrade_conf_file.cc
View file @
a05b38c1
...
...
@@ -117,6 +117,7 @@ static const char *removed_variables[] =
"log_slow_queries"
,
"max_long_data_size"
,
"rpl_recovery_rank"
,
"skip_bdb"
,
"sql_big_tables"
,
"sql_low_priority_updates"
,
"sql_max_join_size"
,
...
...
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