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
7512856c
Commit
7512856c
authored
Aug 02, 2007
by
ramil/ram@ramil.myoffice.izhnet.ru
Browse files
Options
Browse Files
Download
Plain Diff
Merge mysql.com:/home/ram/work/b30088/b30088.5.0
into mysql.com:/home/ram/work/b30088/b30088.5.1
parents
54ddf932
c62d7528
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
12 additions
and
2 deletions
+12
-2
mysql-test/t/show_check-master.opt
mysql-test/t/show_check-master.opt
+1
-1
mysql-test/t/show_check.test
mysql-test/t/show_check.test
+5
-0
sql/mysqld.cc
sql/mysqld.cc
+6
-1
No files found.
mysql-test/t/show_check-master.opt
View file @
7512856c
--log-slow-queries --log-long-format --log-queries-not-using-indexes
--log-slow-queries --log-long-format --log-queries-not-using-indexes
--myisam-recover=""
mysql-test/t/show_check.test
View file @
7512856c
...
...
@@ -903,6 +903,11 @@ show variables like "log_queries_not_using_indexes";
select
1
from
information_schema
.
tables
limit
1
;
show
status
like
'slow_queries'
;
#
# Bug #30088: Can't disable myisam-recover by a value of ""
#
show
variables
like
'myisam_recover_options'
;
--
echo
End
of
5.0
tests
--
disable_result_log
...
...
sql/mysqld.cc
View file @
7512856c
...
...
@@ -7627,11 +7627,16 @@ get_one_option(int optid, const struct my_option *opt __attribute__((unused)),
#endif
case
OPT_MYISAM_RECOVER
:
{
if
(
!
argument
||
!
argument
[
0
]
)
if
(
!
argument
)
{
myisam_recover_options
=
HA_RECOVER_DEFAULT
;
myisam_recover_options_str
=
myisam_recover_typelib
.
type_names
[
0
];
}
else
if
(
!
argument
[
0
])
{
myisam_recover_options
=
HA_RECOVER_NONE
;
myisam_recover_options_str
=
"OFF"
;
}
else
{
myisam_recover_options_str
=
argument
;
...
...
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