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
75810fbc
Commit
75810fbc
authored
Jul 09, 2007
by
tsmith@sita.local
Browse files
Options
Browse Files
Download
Plain Diff
Merge tsmith@bk-internal.mysql.com:/home/bk/mysql-5.0-maint
into sita.local:/Users/tsmith/m/bk/maint/50
parents
c2092ee9
a10759d0
Changes
5
Show whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
48 additions
and
4 deletions
+48
-4
mysql-test/r/show_check.result
mysql-test/r/show_check.result
+30
-0
mysql-test/t/show_check.test
mysql-test/t/show_check.test
+16
-0
sql/mysqld.cc
sql/mysqld.cc
+0
-2
sql/sql_parse.cc
sql/sql_parse.cc
+1
-1
sql/unireg.h
sql/unireg.h
+1
-1
No files found.
mysql-test/r/show_check.result
View file @
75810fbc
...
...
@@ -1088,4 +1088,34 @@ DROP TABLE t1;
DROP VIEW v1;
DROP PROCEDURE p1;
DROP FUNCTION f1;
flush status;
show variables like "log_queries_not_using_indexes";
Variable_name Value
log_queries_not_using_indexes ON
select 1 from information_schema.tables limit 1;
1
1
show status like 'slow_queries';
Variable_name Value
Slow_queries 1
set global log_queries_not_using_indexes=OFF;
show variables like "log_queries_not_using_indexes";
Variable_name Value
log_queries_not_using_indexes OFF
select 1 from information_schema.tables limit 1;
1
1
show status like 'slow_queries';
Variable_name Value
Slow_queries 1
set global log_queries_not_using_indexes=ON;
show variables like "log_queries_not_using_indexes";
Variable_name Value
log_queries_not_using_indexes ON
select 1 from information_schema.tables limit 1;
1
1
show status like 'slow_queries';
Variable_name Value
Slow_queries 2
End of 5.0 tests
mysql-test/t/show_check.test
View file @
75810fbc
...
...
@@ -766,4 +766,20 @@ DROP VIEW v1;
DROP
PROCEDURE
p1
;
DROP
FUNCTION
f1
;
#
# Bug #28808: log_queries_not_using_indexes variable dynamic change is ignored
#
flush
status
;
show
variables
like
"log_queries_not_using_indexes"
;
select
1
from
information_schema
.
tables
limit
1
;
show
status
like
'slow_queries'
;
set
global
log_queries_not_using_indexes
=
OFF
;
show
variables
like
"log_queries_not_using_indexes"
;
select
1
from
information_schema
.
tables
limit
1
;
show
status
like
'slow_queries'
;
set
global
log_queries_not_using_indexes
=
ON
;
show
variables
like
"log_queries_not_using_indexes"
;
select
1
from
information_schema
.
tables
limit
1
;
show
status
like
'slow_queries'
;
--
echo
End
of
5.0
tests
sql/mysqld.cc
View file @
75810fbc
...
...
@@ -7461,8 +7461,6 @@ static void get_options(int argc,char **argv)
if
(
opt_short_log_format
)
opt_specialflag
|=
SPECIAL_SHORT_LOG_FORMAT
;
if
(
opt_log_queries_not_using_indexes
)
opt_specialflag
|=
SPECIAL_LOG_QUERIES_NOT_USING_INDEXES
;
if
(
init_global_datetime_format
(
MYSQL_TIMESTAMP_DATE
,
&
global_system_variables
.
date_format
)
||
...
...
sql/sql_parse.cc
View file @
75810fbc
...
...
@@ -2207,7 +2207,7 @@ void log_slow_statement(THD *thd)
thd
->
variables
.
long_query_time
||
(
thd
->
server_status
&
(
SERVER_QUERY_NO_INDEX_USED
|
SERVER_QUERY_NO_GOOD_INDEX_USED
))
&&
(
specialflag
&
SPECIAL_LOG_QUERIES_NOT_USING_INDEXES
)
&&
opt_log_queries_not_using_indexes
&&
/* == SQLCOM_END unless this is a SHOW command */
thd
->
lex
->
orig_sql_command
==
SQLCOM_END
)
{
...
...
sql/unireg.h
View file @
75810fbc
...
...
@@ -120,7 +120,7 @@
#define SPECIAL_NO_HOST_CACHE 512
/* Don't cache hosts */
#define SPECIAL_SHORT_LOG_FORMAT 1024
#define SPECIAL_SAFE_MODE 2048
#define SPECIAL_LOG_QUERIES_NOT_USING_INDEXES 4096
/*
Log q not using indexes
*/
#define SPECIAL_LOG_QUERIES_NOT_USING_INDEXES 4096
/*
Obsolete
*/
/* Extern defines */
#define store_record(A,B) bmove_align((A)->B,(A)->record[0],(size_t) (A)->s->reclength)
...
...
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