1
0
mirror of https://github.com/mariadb-corporation/mariadb-columnstore-engine.git synced 2025-08-29 03:22:01 +03:00
Files
mariadb-columnstore-engine/mysql-test/columnstore/devregression/t/mcs7182_regression_bug5687.test
Daniel Lee 4c9d6e39ac Dlee mtr restructure (#2494)
* Restructured test suites and added autopilot and extended suites

* Updated autopilot with correct branch - develop

* Moved setup test case to a 'setup' directory, for consistency

* Fixed a path issue

* Updated some tests cases to keep up with development

Co-authored-by: root <root@rocky8.localdomain>
2022-08-09 21:20:56 +03:00

28 lines
1.0 KiB
Plaintext

# -------------------------------------------------------------- #
# Test case migrated from regression test suite: bug5687.sql
#
# Author: Daniel Lee, daniel.lee@mariadb.com
# -------------------------------------------------------------- #
#
--source ../include/have_columnstore.inc
#
USE tpch1;
#
drop table if exists bug5687;
create table bug5687(col1 datetime DEFAULT NULL) engine=columnstore;
insert into bug5687 (col1) values ("2012-01-24 11:00:01");
insert into bug5687 (col1) values ("1812-02-24 11:10:01");
insert into bug5687 (col1) values ("2002-03-24 11:20:01");
insert into bug5687 (col1) values ("2010-04-24 11:30:01");
insert into bug5687 (col1) values ("2000-05-24 11:40:01");
insert into bug5687 (col1) values ("2019-06-24 11:50:11");
insert into bug5687 (col1) values ("2022-07-24 11:00:21");
insert into bug5687 (col1) values ("2052-08-24 11:00:31");
insert into bug5687 (col1) values ("3002-09-24 11:00:41");
select TIMESTAMPADD(SECOND, 25284748647, col1) from bug5687;
drop table if exists bug5687;
#