1
0
mirror of https://github.com/mariadb-corporation/mariadb-columnstore-engine.git synced 2025-11-25 20:23:16 +03:00
Files
mariadb-columnstore-engine/mtr/csinternal/devregression/t/mcs7596_q23212.test
mariadb-RomanNavrotskiy 73b4147cf3 move mtr suites here
2021-01-31 01:38:31 +02:00

16 lines
338 B
Plaintext

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