mirror of
				https://github.com/MariaDB/server.git
				synced 2025-11-03 14:33:32 +03:00 
			
		
		
		
	table_stat -> table_stats column_stat -> column_stats index_stat -> index_stats to be in line with the names of innodb statistical tables from mysql-5.6: innodb_table_stats and innodb_index_stats.
		
			
				
	
	
		
			6 lines
		
	
	
		
			186 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			6 lines
		
	
	
		
			186 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
if (`select count(*) < 3 from information_schema.tables 
 | 
						|
    where table_schema = 'mysql' and table_name in ('table_stats','column_stats','index_stats')`)
 | 
						|
{
 | 
						|
  --skip Needs stat tables
 | 
						|
}
 |