[test](pipelinex) disable pipelinex case temporaraly #24699

This commit is contained in:
shuke
2023-09-20 21:34:30 +08:00
committed by GitHub
parent 2e85e0163d
commit 49d6627e31
51 changed files with 51 additions and 51 deletions

View File

@ -61,7 +61,7 @@ suite("test_distinct_streaming_agg_operator") {
select k6 from baseall group by k6 order by k6;
"""
sql"""set experimental_enable_pipeline_x_engine=true; """
sql"""set experimental_enable_pipeline_x_engine=false; """
qt_pipelineX_1 """
select * from ( select k1,k2,k3 from baseall union select k1,k2,k3 from baseall) as t ORDER BY 1, 2,3;

View File

@ -70,7 +70,7 @@ suite("test_repeat_operator") {
ORDER BY k1, k2,k3;
"""
sql"""set experimental_enable_pipeline_x_engine=true; """
sql"""set experimental_enable_pipeline_x_engine=false; """
qt_pipelineX """
SELECT k1, k2

View File

@ -80,7 +80,7 @@ suite("test_union_operator") {
"""
sql"""set experimental_enable_pipeline_x_engine=true,parallel_pipeline_task_num = 8;; """
sql"""set experimental_enable_pipeline_x_engine=false,parallel_pipeline_task_num = 8;; """
qt_pipelineX """
SELECT count(*)

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 revenue
SELECT /*+SET_VAR(experimental_enable_pipeline_x_engine=false) */ SUM(LO_EXTENDEDPRICE * LO_DISCOUNT) AS revenue
FROM lineorder_flat
WHERE
LO_ORDERDATE >= 19930101

View File

@ -15,7 +15,7 @@
-- specific language governing permissions and limitations
-- under the License.
--Q1.2
SELECT /*+SET_VAR(experimental_enable_pipeline_x_engine=true) */ SUM(LO_EXTENDEDPRICE * LO_DISCOUNT) AS revenue
SELECT /*+SET_VAR(experimental_enable_pipeline_x_engine=false) */ SUM(LO_EXTENDEDPRICE * LO_DISCOUNT) AS revenue
FROM lineorder_flat
WHERE
LO_ORDERDATE >= 19940101

View File

@ -15,7 +15,7 @@
-- specific language governing permissions and limitations
-- under the License.
--Q1.3
SELECT /*+SET_VAR(experimental_enable_pipeline_x_engine=true) */ SUM(LO_EXTENDEDPRICE * LO_DISCOUNT) AS revenue
SELECT /*+SET_VAR(experimental_enable_pipeline_x_engine=false) */ SUM(LO_EXTENDEDPRICE * LO_DISCOUNT) AS revenue
FROM lineorder_flat
WHERE
weekofyear(LO_ORDERDATE) = 6

View File

@ -15,7 +15,7 @@
-- specific language governing permissions and limitations
-- under the License.
--Q2.1
SELECT /*+SET_VAR(experimental_enable_pipeline_x_engine=true) */
SELECT /*+SET_VAR(experimental_enable_pipeline_x_engine=false) */
SUM(LO_REVENUE), (LO_ORDERDATE DIV 10000) AS YEAR,
P_BRAND
FROM lineorder_flat

View File

@ -15,7 +15,7 @@
-- specific language governing permissions and limitations
-- under the License.
--Q2.2
SELECT /*+SET_VAR(experimental_enable_pipeline_x_engine=true) */
SELECT /*+SET_VAR(experimental_enable_pipeline_x_engine=false) */
SUM(LO_REVENUE), (LO_ORDERDATE DIV 10000) AS YEAR,
P_BRAND
FROM lineorder_flat

View File

@ -15,7 +15,7 @@
-- specific language governing permissions and limitations
-- under the License.
--Q2.3
SELECT /*+SET_VAR(experimental_enable_pipeline_x_engine=true) */
SELECT /*+SET_VAR(experimental_enable_pipeline_x_engine=false) */
SUM(LO_REVENUE), (LO_ORDERDATE DIV 10000) AS YEAR,
P_BRAND
FROM lineorder_flat

View File

@ -15,7 +15,7 @@
-- specific language governing permissions and limitations
-- under the License.
--Q3.1
SELECT /*+SET_VAR(experimental_enable_pipeline_x_engine=true) */
SELECT /*+SET_VAR(experimental_enable_pipeline_x_engine=false) */
C_NATION,
S_NATION, (LO_ORDERDATE DIV 10000) AS YEAR,
SUM(LO_REVENUE) AS revenue

View File

@ -15,7 +15,7 @@
-- specific language governing permissions and limitations
-- under the License.
--Q3.2
SELECT /*+SET_VAR(experimental_enable_pipeline_x_engine=true) */
SELECT /*+SET_VAR(experimental_enable_pipeline_x_engine=false) */
C_CITY,
S_CITY, (LO_ORDERDATE DIV 10000) AS YEAR,
SUM(LO_REVENUE) AS revenue

View File

@ -15,7 +15,7 @@
-- specific language governing permissions and limitations
-- under the License.
--Q3.3
SELECT /*+SET_VAR(experimental_enable_pipeline_x_engine=true) */
SELECT /*+SET_VAR(experimental_enable_pipeline_x_engine=false) */
C_CITY,
S_CITY, (LO_ORDERDATE DIV 10000) AS YEAR,
SUM(LO_REVENUE) AS revenue

View File

@ -15,7 +15,7 @@
-- specific language governing permissions and limitations
-- under the License.
--Q3.4
SELECT /*+SET_VAR(experimental_enable_pipeline_x_engine=true) */
SELECT /*+SET_VAR(experimental_enable_pipeline_x_engine=false) */
C_CITY,
S_CITY, (LO_ORDERDATE DIV 10000) AS YEAR,
SUM(LO_REVENUE) AS revenue

View File

@ -15,7 +15,7 @@
-- specific language governing permissions and limitations
-- under the License.
--Q4.1
SELECT /*+SET_VAR(experimental_enable_pipeline_x_engine=true) */ (LO_ORDERDATE DIV 10000) AS YEAR,
SELECT /*+SET_VAR(experimental_enable_pipeline_x_engine=false) */ (LO_ORDERDATE DIV 10000) AS YEAR,
C_NATION,
SUM(LO_REVENUE - LO_SUPPLYCOST) AS profit
FROM lineorder_flat

View File

@ -15,7 +15,7 @@
-- specific language governing permissions and limitations
-- under the License.
--Q4.2
SELECT /*+SET_VAR(experimental_enable_pipeline_x_engine=true) */ (LO_ORDERDATE DIV 10000) AS YEAR,
SELECT /*+SET_VAR(experimental_enable_pipeline_x_engine=false) */ (LO_ORDERDATE DIV 10000) AS YEAR,
S_NATION,
P_CATEGORY,
SUM(LO_REVENUE - LO_SUPPLYCOST) AS profit

View File

@ -15,7 +15,7 @@
-- specific language governing permissions and limitations
-- under the License.
--Q4.3
SELECT /*+SET_VAR(experimental_enable_pipeline_x_engine=true) */ (LO_ORDERDATE DIV 10000) AS YEAR,
SELECT /*+SET_VAR(experimental_enable_pipeline_x_engine=false) */ (LO_ORDERDATE DIV 10000) AS YEAR,
S_CITY,
P_BRAND,
SUM(LO_REVENUE - LO_SUPPLYCOST) AS profit

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=false) */ 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=false) */ 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=false) */ 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=false) */ 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=false) */ 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=false) */ 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=false) */ 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=false) */ 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=false) */ 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=false) */ 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=false) */ 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=false) */ 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=false) */ 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=false) */
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=false) */
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=false) */
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=false) */
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=false) */
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=false) */ 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=false) */
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=false) */
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=false) */
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=false) */
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=false) */
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=false) */
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=false) */
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=false) */ 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=false) */
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=false) */
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=false) */ 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=false) */
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=false) */ 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=false) */
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=false) */
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=false) */
cntrycode,
count(*) AS numcust,
sum(c_acctbal) AS totacctbal