after-merge fix.
This commit is contained in:
parent
ede22768a9
commit
b37c24c439
@ -1148,7 +1148,37 @@ DROP TABLE t1;
|
|||||||
DROP VIEW v1;
|
DROP VIEW v1;
|
||||||
DROP PROCEDURE p1;
|
DROP PROCEDURE p1;
|
||||||
DROP FUNCTION f1;
|
DROP FUNCTION f1;
|
||||||
End of 5.0 tests.
|
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 2
|
||||||
|
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 2
|
||||||
|
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 4
|
||||||
|
End of 5.0 tests
|
||||||
SHOW AUTHORS;
|
SHOW AUTHORS;
|
||||||
create database mysqltest;
|
create database mysqltest;
|
||||||
show create database mysqltest;
|
show create database mysqltest;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user