mirror of
https://github.com/MariaDB/server.git
synced 2025-12-24 11:21:21 +03:00
wl#1629 SHOW with WHERE(final part, after review)
added syntax: 'show variables where', 'show status where', 'show open tables where'
This commit is contained in:
@@ -686,3 +686,14 @@ show status like "Qcache_hits";
|
||||
#
|
||||
DROP TABLE t1;
|
||||
SET GLOBAL query_cache_size=0;
|
||||
|
||||
#
|
||||
# Information schema & query cache test
|
||||
#
|
||||
SET SESSION query_cache_type = 2;
|
||||
create table t1(a int);
|
||||
select table_name from information_schema.tables
|
||||
where table_schema="test";
|
||||
drop table t1;
|
||||
select table_name from information_schema.tables
|
||||
where table_schema="test";
|
||||
|
||||
Reference in New Issue
Block a user