mirror of
				https://github.com/MariaDB/server.git
				synced 2025-10-24 07:13:33 +03:00 
			
		
		
		
	
		
			
				
	
	
		
			54 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			54 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
| -- source include/have_bdb.inc
 | |
| -- source include/have_query_cache.inc
 | |
| 
 | |
| #
 | |
| # Without auto_commit.
 | |
| #
 | |
| --disable_warnings
 | |
| drop table if exists t1, t2, t3;
 | |
| --enable_warnings
 | |
| flush status;
 | |
| set autocommit=0;
 | |
| create table t1 (a int not null) engine=bdb;
 | |
| insert into t1 values (1),(2),(3);
 | |
| select * from t1;
 | |
| show status like "Qcache_queries_in_cache";
 | |
| drop table t1;
 | |
| set autocommit=1;
 | |
| create table t1 (a int not null) engine=bdb;
 | |
| begin;
 | |
| insert into t1 values (1),(2),(3);
 | |
| select * from t1;
 | |
| show status like "Qcache_queries_in_cache";
 | |
| drop table t1;
 | |
| create table t1 (a int not null) engine=bdb;
 | |
| create table t2 (a int not null) engine=bdb;
 | |
| create table t3 (a int not null) engine=bdb;
 | |
| insert into t1 values (1),(2);
 | |
| insert into t2 values (1),(2);
 | |
| insert into t3 values (1),(2);
 | |
| select * from t1;
 | |
| select * from t2;
 | |
| select * from t3;
 | |
| show status like "Qcache_queries_in_cache";
 | |
| show status like "Qcache_hits";
 | |
| begin;
 | |
| select * from t1;
 | |
| select * from t2;
 | |
| select * from t3;
 | |
| show status like "Qcache_queries_in_cache";
 | |
| show status like "Qcache_hits";
 | |
| insert into t1 values (3);
 | |
| insert into t2 values (3);
 | |
| insert into t1 values (4);
 | |
| select * from t1;
 | |
| select * from t2;
 | |
| select * from t3;
 | |
| show status like "Qcache_queries_in_cache";
 | |
| show status like "Qcache_hits";
 | |
| commit;
 | |
| show status like "Qcache_queries_in_cache";
 | |
| drop table if exists t1, t2, t3;
 | |
| 
 | |
| # End of 4.1 tests
 | 
