mirror of
https://github.com/MariaDB/server.git
synced 2025-02-15 18:05:32 +01:00
![Omer BarNir](/assets/img/avatar_default.png)
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;
|
|
|