1
0
mirror of https://github.com/mariadb-corporation/mariadb-columnstore-engine.git synced 2025-08-05 16:15:50 +03:00
Files

16 lines
338 B
Plaintext

#
# Test case migrated from regression test suite:
# ./mysql/queries/nightly/alltest/test002/q2.3.2.1.1.sql
#
# Author: Susil, susil.behera@mariadb.com
#
-- source ../include/have_columnstore.inc
USE tpch1;
select count(*) from part, lineitem
where p_retailprice < 913.65
and p_partkey = l_suppkey
and l_shipdate < '1992-04-09';