mirror of
https://github.com/MariaDB/server.git
synced 2025-12-24 11:21:21 +03:00
Fixed sleep time in mysql-test-run
Fixed bug in query cache. Cleaned up des_crypt code.
This commit is contained in:
14
mysql-test/t/innodb_cache.test
Normal file
14
mysql-test/t/innodb_cache.test
Normal file
@@ -0,0 +1,14 @@
|
||||
-- source include/have_innodb.inc
|
||||
|
||||
#
|
||||
# Without auto_commit.
|
||||
#
|
||||
drop table if exists t1;
|
||||
set autocommit=0;
|
||||
create table t1 (a int not null) type=innodb;
|
||||
insert into t1 values (1),(2),(3);
|
||||
select * from t1;
|
||||
show status like "Qcache_queries_in_cache";
|
||||
drop table t1;
|
||||
commit;
|
||||
set autocommit=1;
|
||||
Reference in New Issue
Block a user