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/r/mcs7001_regression_bug1796.result
mariadb-RomanNavrotskiy 73b4147cf3 move mtr suites here
2021-01-31 01:38:31 +02:00

18 lines
414 B
Plaintext

USE tpch1;
select count(n_nationkey)
from nation, customer, orders, lineitem
where n_nationkey = c_nationkey and
c_custkey = o_custkey and
o_orderkey = l_orderkey and
l_orderkey <= 10000;
count(n_nationkey)
9965
select count(n_nationkey)
from nation, customer, orders, lineitem
where c_custkey = o_custkey and
o_orderkey = l_orderkey and
n_nationkey = c_nationkey and
l_orderkey <= 10000;
count(n_nationkey)
9965