mirror of
				https://github.com/MariaDB/server.git
				synced 2025-10-31 19:06:14 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			31 lines
		
	
	
	
		
			898 B
		
	
	
	
		
			Text
		
	
	
	
	
	
			
		
		
	
	
			31 lines
		
	
	
	
		
			898 B
		
	
	
	
		
			Text
		
	
	
	
	
	
| # Tests for PERFORMANCE_SCHEMA
 | |
| 
 | |
| --source include/not_embedded.inc
 | |
| --source include/have_perfschema.inc
 | |
| 
 | |
| -- error ER_DBACCESS_DENIED_ERROR
 | |
| alter table performance_schema.setup_actors add column foo integer;
 | |
| 
 | |
| --disable_warnings
 | |
| drop table if exists test.setup_actors;
 | |
| --enable_warnings
 | |
| 
 | |
| create table test.setup_actors as
 | |
|   select * from performance_schema.setup_actors;
 | |
| 
 | |
| truncate table performance_schema.setup_actors;
 | |
| 
 | |
| select count(*) from performance_schema.setup_actors;
 | |
| 
 | |
| insert into performance_schema.setup_actors
 | |
|   select * from test.setup_actors;
 | |
| drop table test.setup_actors;
 | |
| 
 | |
| -- error ER_DBACCESS_DENIED_ERROR
 | |
| ALTER TABLE performance_schema.setup_actors ADD INDEX test_index(HOST);
 | |
| 
 | |
| -- error ER_DBACCESS_DENIED_ERROR
 | |
| CREATE UNIQUE INDEX test_index ON performance_schema.setup_actors(HOST);
 | |
| 
 | |
| -- error ER_DBACCESS_DENIED_ERROR
 | |
| ALTER TABLE performance_schema.setup_actors ADD KEY ENA(ENABLED);
 | 
