mirror of
				https://github.com/MariaDB/server.git
				synced 2025-10-31 10:56:12 +01:00 
			
		
		
		
	 c92b9b7315
			
		
	
	
	c92b9b7315
	
	
	
		
			
			for general use. mysql-test/Makefile.am: Adding directories of additional test suites mysql-test/mysql-stress-test.pl: Adding check for additional errors checking during test run
		
			
				
	
	
		
			28 lines
		
	
	
	
		
			873 B
		
	
	
	
		
			Text
		
	
	
	
	
	
			
		
		
	
	
			28 lines
		
	
	
	
		
			873 B
		
	
	
	
		
			Text
		
	
	
	
	
	
| --disable_warnings
 | |
| DROP TABLE IF EXISTS t1;
 | |
| --enable_warnings
 | |
| CREATE TABLE t1(c1 DATE NULL, c2 DATE NULL);
 | |
| SET TIMESTAMP=1171346973; # 2007-02-13 15:09:33
 | |
| INSERT INTO t1 VALUES(NOW(),NOW());
 | |
| INSERT INTO t1 VALUES(NOW(),NOW());
 | |
| ANALYZE TABLE t1;
 | |
| DROP TABLE t1;
 | |
| CREATE TABLE t1(c1 TIME NULL, c2 TIME NULL);
 | |
| SET TIMESTAMP=1171346973; # 2007-02-13 15:09:33
 | |
| INSERT INTO t1 VALUES(NOW(),NOW());
 | |
| INSERT INTO t1 VALUES(NOW(),NOW());
 | |
| ANALYZE TABLE t1;
 | |
| DROP TABLE t1;
 | |
| CREATE TABLE t1(c1 DATETIME NULL, c2 DATETIME NULL);
 | |
| SET TIMESTAMP=1171346973; # 2007-02-13 15:09:33
 | |
| INSERT INTO t1 VALUES(NOW(),NOW());
 | |
| INSERT INTO t1 VALUES(NOW(),NOW());
 | |
| ANALYZE TABLE t1;
 | |
| DROP TABLE t1;
 | |
| CREATE TABLE t1(c1 TIMESTAMP NULL, c2 TIMESTAMP NULL);
 | |
| SET TIMESTAMP=1171346973; # 2007-02-13 15:09:33
 | |
| INSERT INTO t1 VALUES(NOW(),NOW());
 | |
| INSERT INTO t1 VALUES(NOW(),NOW());
 | |
| ANALYZE TABLE t1;
 | |
| DROP TABLE t1;
 | |
| 
 |