mirror of
https://github.com/MariaDB/server.git
synced 2025-01-20 05:52:27 +01:00
after-merge fix.
This commit is contained in:
parent
ede22768a9
commit
b37c24c439
1 changed files with 31 additions and 1 deletions
|
@ -1148,7 +1148,37 @@ DROP TABLE t1;
|
|||
DROP VIEW v1;
|
||||
DROP PROCEDURE p1;
|
||||
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;
|
||||
create database mysqltest;
|
||||
show create database mysqltest;
|
||||
|
|
Loading…
Reference in a new issue