mirror of
				https://github.com/MariaDB/server.git
				synced 2025-10-27 05:56:07 +03:00 
			
		
		
		
	mtr *thinks* there's a side effect Use the new force_restart() to avoid running the check-testcase
		
			
				
	
	
		
			25 lines
		
	
	
		
			349 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			25 lines
		
	
	
		
			349 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
| INSERT INTO init_file.startup VALUES ( NOW() );
 | |
| SELECT * INTO @X FROM init_file.startup limit 0,1;
 | |
| SELECT * INTO @Y FROM init_file.startup limit 1,1;
 | |
| SELECT YEAR(@X)-YEAR(@Y);
 | |
| YEAR(@X)-YEAR(@Y)
 | |
| 0
 | |
| DROP DATABASE init_file;
 | |
| ok
 | |
| end of 4.1 tests
 | |
| select * from t1;
 | |
| x
 | |
| 3
 | |
| 5
 | |
| 7
 | |
| 11
 | |
| 13
 | |
| select * from t2;
 | |
| y
 | |
| 30
 | |
| 3
 | |
| 11
 | |
| 13
 | |
| drop table t1, t2;
 | |
| call mtr.force_restart();
 |