mirror of
https://github.com/mariadb-corporation/mariadb-columnstore-engine.git
synced 2025-04-26 11:48:52 +03:00
31 lines
784 B
Plaintext
31 lines
784 B
Plaintext
# -------------------------------------------------------------- #
|
|
# Test case migrated from regression test suite: bug4359.sql
|
|
#
|
|
# Author: Daniel Lee, daniel.lee@mariadb.com
|
|
# -------------------------------------------------------------- #
|
|
#
|
|
--source ../include/have_columnstore.inc
|
|
#
|
|
USE tpch1;
|
|
#
|
|
--disable_warnings
|
|
drop table if exists bug4359;
|
|
--enable_warnings
|
|
|
|
CREATE TABLE bug4359 (
|
|
sdate datetime DEFAULT NULL,
|
|
edate datetime DEFAULT NULL
|
|
) engine=columnstore;
|
|
|
|
insert into bug4359 values ('2009-01-05 13:30:00','2009-01-05 14:30:00');
|
|
insert into bug4359 values ('2009-01-05 13:30:00','2009-01-05 14:00:00');
|
|
|
|
select timediff(edate,sdate) from bug4359;
|
|
select time_to_sec(timediff(edate,sdate)) from bug4359;
|
|
|
|
--disable_warnings
|
|
drop table bug4359;
|
|
--enable_warnings
|
|
#
|
|
|