mirror of
https://github.com/MariaDB/server.git
synced 2025-01-17 04:22:27 +01:00
post commit fix: missing result file.
This commit is contained in:
parent
2d6a356abf
commit
94e70aff64
1 changed files with 14 additions and 0 deletions
14
mysql-test/r/query_cache_disabled.result
Normal file
14
mysql-test/r/query_cache_disabled.result
Normal file
|
@ -0,0 +1,14 @@
|
|||
SHOW GLOBAL VARIABLES LIKE 'query_cache_type';
|
||||
Variable_name Value
|
||||
query_cache_type OFF
|
||||
SET GLOBAL query_cache_type=ON;
|
||||
ERROR HY000: Query cache is disabled; restart the server with query_cache_type=1 to enable it
|
||||
SET GLOBAL query_cache_type=DEMAND;
|
||||
ERROR HY000: Query cache is disabled; restart the server with query_cache_type=1 to enable it
|
||||
SET GLOBAL query_cache_type=OFF;
|
||||
ERROR HY000: Query cache is disabled; restart the server with query_cache_type=1 to enable it
|
||||
SET GLOBAL query_cache_size=1024*1024;
|
||||
SHOW GLOBAL VARIABLES LIKE 'query_cache_size';
|
||||
Variable_name Value
|
||||
query_cache_size 1048576
|
||||
SET GLOBAL query_cache_size=0;
|
Loading…
Reference in a new issue