You've already forked mariadb-columnstore-engine
mirror of
https://github.com/mariadb-corporation/mariadb-columnstore-engine.git
synced 2025-11-25 20:23:16 +03:00
19 lines
494 B
Plaintext
19 lines
494 B
Plaintext
# -------------------------------------------------------------- #
|
|
# Test case migrated from regression test suite: bug2834.sql
|
|
#
|
|
# Author: Daniel Lee, daniel.lee@mariadb.com
|
|
# -------------------------------------------------------------- #
|
|
#
|
|
--source ../include/have_columnstore.inc
|
|
#
|
|
USE tpch1;
|
|
#
|
|
select cidx, if(SECOND(cdatetime) between 1 and 20, 0, 1) from
|
|
datatypetestm order by 1;
|
|
|
|
select cidx, if(date_format(cdatetime,'%s') between 1 and 20, 0, 1) from datatypetestm order by 1;
|
|
|
|
|
|
#
|
|
|