[regression](pipelineX) disable runtime filter for pipelineX test cases (#24119)

This commit is contained in:
Gabriel
2023-09-08 23:31:26 +08:00
committed by GitHub
parent 69cc6fee97
commit 8336bf0b06
35 changed files with 35 additions and 35 deletions

View File

@ -15,7 +15,7 @@
-- specific language governing permissions and limitations
-- under the License.
SELECT /*+SET_VAR(experimental_enable_pipeline_x_engine=true) */ SUM(lo_extendedprice*lo_discount) AS
SELECT /*+SET_VAR(experimental_enable_pipeline_x_engine=true, runtime_filter_mode=OFF) */ SUM(lo_extendedprice*lo_discount) AS
REVENUE
FROM lineorder, date
WHERE lo_orderdate = d_datekey

View File

@ -15,7 +15,7 @@
-- specific language governing permissions and limitations
-- under the License.
SELECT /*+SET_VAR(experimental_enable_pipeline_x_engine=true) */ SUM(lo_extendedprice*lo_discount) AS
SELECT /*+SET_VAR(experimental_enable_pipeline_x_engine=true, runtime_filter_mode=OFF) */ SUM(lo_extendedprice*lo_discount) AS
REVENUE
FROM lineorder, date
WHERE lo_orderdate = d_datekey

View File

@ -15,7 +15,7 @@
-- specific language governing permissions and limitations
-- under the License.
SELECT /*+SET_VAR(experimental_enable_pipeline_x_engine=true) */ SUM(lo_extendedprice*lo_discount) AS
SELECT /*+SET_VAR(experimental_enable_pipeline_x_engine=true, runtime_filter_mode=OFF) */ SUM(lo_extendedprice*lo_discount) AS
REVENUE
FROM lineorder, date
WHERE lo_orderdate = d_datekey

View File

@ -15,7 +15,7 @@
-- specific language governing permissions and limitations
-- under the License.
SELECT /*+SET_VAR(experimental_enable_pipeline_x_engine=true) */ SUM(lo_revenue), d_year, p_brand
SELECT /*+SET_VAR(experimental_enable_pipeline_x_engine=true, runtime_filter_mode=OFF) */ SUM(lo_revenue), d_year, p_brand
FROM lineorder, date, part, supplier
WHERE lo_orderdate = d_datekey
AND lo_partkey = p_partkey

View File

@ -15,7 +15,7 @@
-- specific language governing permissions and limitations
-- under the License.
SELECT /*+SET_VAR(experimental_enable_pipeline_x_engine=true) */ SUM(lo_revenue), d_year, p_brand
SELECT /*+SET_VAR(experimental_enable_pipeline_x_engine=true, runtime_filter_mode=OFF) */ SUM(lo_revenue), d_year, p_brand
FROM lineorder, date, part, supplier
WHERE lo_orderdate = d_datekey
AND lo_partkey = p_partkey

View File

@ -15,7 +15,7 @@
-- specific language governing permissions and limitations
-- under the License.
SELECT /*+SET_VAR(experimental_enable_pipeline_x_engine=true) */ SUM(lo_revenue), d_year, p_brand
SELECT /*+SET_VAR(experimental_enable_pipeline_x_engine=true, runtime_filter_mode=OFF) */ SUM(lo_revenue), d_year, p_brand
FROM lineorder, date, part, supplier
WHERE lo_orderdate = d_datekey
AND lo_partkey = p_partkey

View File

@ -15,7 +15,7 @@
-- specific language governing permissions and limitations
-- under the License.
SELECT /*+SET_VAR(experimental_enable_pipeline_x_engine=true) */ c_nation, s_nation, d_year,
SELECT /*+SET_VAR(experimental_enable_pipeline_x_engine=true, runtime_filter_mode=OFF) */ c_nation, s_nation, d_year,
SUM(lo_revenue) AS REVENUE
FROM customer, lineorder, supplier, date
WHERE lo_custkey = c_custkey

View File

@ -15,7 +15,7 @@
-- specific language governing permissions and limitations
-- under the License.
SELECT /*+SET_VAR(experimental_enable_pipeline_x_engine=true) */ c_city, s_city, d_year, sum(lo_revenue)
SELECT /*+SET_VAR(experimental_enable_pipeline_x_engine=true, runtime_filter_mode=OFF) */ c_city, s_city, d_year, sum(lo_revenue)
AS REVENUE
FROM customer, lineorder, supplier, date
WHERE lo_custkey = c_custkey

View File

@ -15,7 +15,7 @@
-- specific language governing permissions and limitations
-- under the License.
SELECT /*+SET_VAR(experimental_enable_pipeline_x_engine=true) */ c_city, s_city, d_year, SUM(lo_revenue)
SELECT /*+SET_VAR(experimental_enable_pipeline_x_engine=true, runtime_filter_mode=OFF) */ c_city, s_city, d_year, SUM(lo_revenue)
AS REVENUE
FROM customer, lineorder, supplier, date
WHERE lo_custkey = c_custkey

View File

@ -15,7 +15,7 @@
-- specific language governing permissions and limitations
-- under the License.
SELECT /*+SET_VAR(experimental_enable_pipeline_x_engine=true) */ c_city, s_city, d_year, SUM(lo_revenue)
SELECT /*+SET_VAR(experimental_enable_pipeline_x_engine=true, runtime_filter_mode=OFF) */ c_city, s_city, d_year, SUM(lo_revenue)
AS REVENUE
FROM customer, lineorder, supplier, date
WHERE lo_custkey = c_custkey

View File

@ -15,7 +15,7 @@
-- specific language governing permissions and limitations
-- under the License.
SELECT /*+SET_VAR(experimental_enable_pipeline_x_engine=true) */ d_year, c_nation,
SELECT /*+SET_VAR(experimental_enable_pipeline_x_engine=true, runtime_filter_mode=OFF) */ d_year, c_nation,
SUM(lo_revenue - lo_supplycost) AS PROFIT
FROM date, customer, supplier, part, lineorder
WHERE lo_custkey = c_custkey

View File

@ -15,7 +15,7 @@
-- specific language governing permissions and limitations
-- under the License.
SELECT /*+SET_VAR(experimental_enable_pipeline_x_engine=true) */ d_year, s_nation, p_category,
SELECT /*+SET_VAR(experimental_enable_pipeline_x_engine=true, runtime_filter_mode=OFF) */ d_year, s_nation, p_category,
SUM(lo_revenue - lo_supplycost) AS PROFIT
FROM date, customer, supplier, part, lineorder
WHERE lo_custkey = c_custkey

View File

@ -15,7 +15,7 @@
-- specific language governing permissions and limitations
-- under the License.
SELECT /*+SET_VAR(experimental_enable_pipeline_x_engine=true) */ d_year, s_city, p_brand,
SELECT /*+SET_VAR(experimental_enable_pipeline_x_engine=true, runtime_filter_mode=OFF) */ d_year, s_city, p_brand,
SUM(lo_revenue - lo_supplycost) AS PROFIT
FROM date, customer, supplier, part, lineorder
WHERE lo_custkey = c_custkey

View File

@ -1,5 +1,5 @@
-- tables: lineitem
SELECT /*+SET_VAR(experimental_enable_pipeline_x_engine=true) */
SELECT /*+SET_VAR(experimental_enable_pipeline_x_engine=true, runtime_filter_mode=OFF) */
l_returnflag,
l_linestatus,
sum(l_quantity) AS sum_qty,

View File

@ -1,5 +1,5 @@
-- tables: part,supplier,partsupp,nation,region
SELECT /*+SET_VAR(experimental_enable_pipeline_x_engine=true) */
SELECT /*+SET_VAR(experimental_enable_pipeline_x_engine=true, runtime_filter_mode=OFF) */
s_acctbal,
s_name,
n_name,

View File

@ -1,5 +1,5 @@
-- tables: customer,orders,lineitem
SELECT /*+SET_VAR(experimental_enable_pipeline_x_engine=true) */
SELECT /*+SET_VAR(experimental_enable_pipeline_x_engine=true, runtime_filter_mode=OFF) */
l_orderkey,
sum(l_extendedprice * (1 - l_discount)) AS revenue,
o_orderdate,

View File

@ -1,5 +1,5 @@
-- tables: orders,lineitem
SELECT /*+SET_VAR(experimental_enable_pipeline_x_engine=true) */
SELECT /*+SET_VAR(experimental_enable_pipeline_x_engine=true, runtime_filter_mode=OFF) */
o_orderpriority,
count(*) AS order_count
FROM orders

View File

@ -1,5 +1,5 @@
-- tables: customer,orders,lineitem,supplier,nation,region
SELECT /*+SET_VAR(experimental_enable_pipeline_x_engine=true) */
SELECT /*+SET_VAR(experimental_enable_pipeline_x_engine=true, runtime_filter_mode=OFF) */
n_name,
sum(l_extendedprice * (1 - l_discount)) AS revenue
FROM

View File

@ -1,6 +1,6 @@
-- tables: lineitem
SELECT /*+SET_VAR(experimental_enable_pipeline_x_engine=true) */ sum(l_extendedprice * l_discount) AS revenue
SELECT /*+SET_VAR(experimental_enable_pipeline_x_engine=true, runtime_filter_mode=OFF) */ sum(l_extendedprice * l_discount) AS revenue
FROM
lineitem
WHERE

View File

@ -1,5 +1,5 @@
-- tables: supplier,lineitem,orders,customer,nation
SELECT /*+SET_VAR(experimental_enable_pipeline_x_engine=true) */
SELECT /*+SET_VAR(experimental_enable_pipeline_x_engine=true, runtime_filter_mode=OFF) */
supp_nation,
cust_nation,
l_year,

View File

@ -1,5 +1,5 @@
-- tables: part,supplier,lineitem,orders,customer,nation,region
SELECT /*+SET_VAR(experimental_enable_pipeline_x_engine=true) */
SELECT /*+SET_VAR(experimental_enable_pipeline_x_engine=true, runtime_filter_mode=OFF) */
o_year,
sum(CASE
WHEN nation = 'BRAZIL'

View File

@ -1,5 +1,5 @@
-- tables: part,supplier,lineitem,partsupp,orders,nation
SELECT /*+SET_VAR(experimental_enable_pipeline_x_engine=true) */
SELECT /*+SET_VAR(experimental_enable_pipeline_x_engine=true, runtime_filter_mode=OFF) */
nation,
o_year,
sum(amount) AS sum_profit

View File

@ -1,5 +1,5 @@
-- tables: customer,orders,lineitem,nation
SELECT /*+SET_VAR(experimental_enable_pipeline_x_engine=true) */
SELECT /*+SET_VAR(experimental_enable_pipeline_x_engine=true, runtime_filter_mode=OFF) */
c_custkey,
c_name,
sum(l_extendedprice * (1 - l_discount)) AS revenue,

View File

@ -1,5 +1,5 @@
-- tables: partsupp,supplier,nation
SELECT /*+SET_VAR(experimental_enable_pipeline_x_engine=true) */
SELECT /*+SET_VAR(experimental_enable_pipeline_x_engine=true, runtime_filter_mode=OFF) */
ps_partkey,
sum(ps_supplycost * ps_availqty) AS value
FROM

View File

@ -1,5 +1,5 @@
-- tables: orders,lineitem
SELECT /*+SET_VAR(experimental_enable_pipeline_x_engine=true) */
SELECT /*+SET_VAR(experimental_enable_pipeline_x_engine=true, runtime_filter_mode=OFF) */
l_shipmode,
sum(CASE
WHEN o_orderpriority = '1-URGENT'

View File

@ -1,5 +1,5 @@
-- tables: customer
SELECT /*+SET_VAR(experimental_enable_pipeline_x_engine=true) */
SELECT /*+SET_VAR(experimental_enable_pipeline_x_engine=true, runtime_filter_mode=OFF) */
c_count,
count(*) AS custdist
FROM (

View File

@ -1,5 +1,5 @@
-- tables: lineitem,part
SELECT /*+SET_VAR(experimental_enable_pipeline_x_engine=true) */ 100.00 * sum(CASE
SELECT /*+SET_VAR(experimental_enable_pipeline_x_engine=true, runtime_filter_mode=OFF) */ 100.00 * sum(CASE
WHEN p_type LIKE 'PROMO%'
THEN l_extendedprice * (1 - l_discount)
ELSE 0

View File

@ -1,4 +1,4 @@
SELECT /*+SET_VAR(experimental_enable_pipeline_x_engine=true) */
SELECT /*+SET_VAR(experimental_enable_pipeline_x_engine=true, runtime_filter_mode=OFF) */
s_suppkey,
s_name,
s_address,

View File

@ -1,5 +1,5 @@
-- tables: partsupp,part,supplier
SELECT /*+SET_VAR(experimental_enable_pipeline_x_engine=true) */
SELECT /*+SET_VAR(experimental_enable_pipeline_x_engine=true, runtime_filter_mode=OFF) */
p_brand,
p_type,
p_size,

View File

@ -1,5 +1,5 @@
-- tables: lineitem,part
SELECT /*+SET_VAR(experimental_enable_pipeline_x_engine=true) */ sum(l_extendedprice) / 7.0 AS avg_yearly
SELECT /*+SET_VAR(experimental_enable_pipeline_x_engine=true, runtime_filter_mode=OFF) */ sum(l_extendedprice) / 7.0 AS avg_yearly
FROM
lineitem,
part

View File

@ -1,5 +1,5 @@
-- tables: customer,orders,lineitem
SELECT /*+SET_VAR(experimental_enable_pipeline_x_engine=true) */
SELECT /*+SET_VAR(experimental_enable_pipeline_x_engine=true, runtime_filter_mode=OFF) */
c_name,
c_custkey,
o_orderkey,

View File

@ -1,5 +1,5 @@
-- tables: lineitem,part
SELECT /*+SET_VAR(experimental_enable_pipeline_x_engine=true) */ sum(l_extendedprice * (1 - l_discount)) AS revenue
SELECT /*+SET_VAR(experimental_enable_pipeline_x_engine=true, runtime_filter_mode=OFF) */ sum(l_extendedprice * (1 - l_discount)) AS revenue
FROM
lineitem,
part

View File

@ -1,5 +1,5 @@
-- tables: supplier,nation,partsupp,lineitem,part
SELECT /*+SET_VAR(experimental_enable_pipeline_x_engine=true) */
SELECT /*+SET_VAR(experimental_enable_pipeline_x_engine=true, runtime_filter_mode=OFF) */
s_name,
s_address
FROM

View File

@ -1,5 +1,5 @@
-- tables: supplier,lineitem,orders,nation
SELECT /*+SET_VAR(experimental_enable_pipeline_x_engine=true) */
SELECT /*+SET_VAR(experimental_enable_pipeline_x_engine=true, runtime_filter_mode=OFF) */
s_name,
count(*) AS numwait
FROM

View File

@ -1,5 +1,5 @@
-- tables: orders,customer
SELECT /*+SET_VAR(experimental_enable_pipeline_x_engine=true) */
SELECT /*+SET_VAR(experimental_enable_pipeline_x_engine=true, runtime_filter_mode=OFF) */
cntrycode,
count(*) AS numcust,
sum(c_acctbal) AS totacctbal