mirror of
				https://github.com/MariaDB/server.git
				synced 2025-11-03 14:33:32 +03:00 
			
		
		
		
	ChangeSet@1.2575, 2007-08-07 19:16:06+02:00, msvensson@pilot.(none) +2 -0 Bug#26793 mysqld crashes when doing specific query on information_schema - Drop the newly created user user1@localhost - Cleanup testcase
		
			
				
	
	
		
			9 lines
		
	
	
		
			257 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			9 lines
		
	
	
		
			257 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
DROP TABLE IF EXISTS t1;
 | 
						|
CREATE TABLE `test` (
 | 
						|
`id` INT NOT NULL AUTO_INCREMENT PRIMARY KEY ,
 | 
						|
`t` VARCHAR( 10 ) NOT NULL
 | 
						|
) ENGINE = ndbcluster;
 | 
						|
GRANT USAGE ON *.* TO user1@localhost IDENTIFIED BY 'pass';
 | 
						|
DROP TABLE `test`.`test`;
 | 
						|
drop user user1@localhost;
 |