mirror of
				https://github.com/MariaDB/server.git
				synced 2025-11-03 14:33:32 +03:00 
			
		
		
		
	
		
			
				
	
	
		
			11 lines
		
	
	
		
			347 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			11 lines
		
	
	
		
			347 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
SET @save_use_stat_tables= @@use_stat_tables;
 | 
						|
SET use_stat_tables= PREFERABLY;
 | 
						|
CREATE TABLE t1 (a int);
 | 
						|
insert into t1 values (1),(2),(3);
 | 
						|
SET STATEMENT debug_dbug="d,fail_2call_open_only_one_table" for
 | 
						|
ANALYZE TABLE t1;
 | 
						|
Table	Op	Msg_type	Msg_text
 | 
						|
test.t1	analyze	status	Operation failed
 | 
						|
drop table t1;
 | 
						|
SET use_stat_tables= @save_use_stat_tables;
 |