This is an automated email from the ASF dual-hosted git repository.
gabriellee pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/doris.git
from 3047d7dd07 [fix](Nereids) fix or to in rule (#23940)
add 7625d1514a [pipelineX](feature) support select operator and add TPCH
test cases (#23954)
No new revisions were added by this update.
Summary of changes:
be/src/pipeline/exec/exchange_sink_operator.cpp | 13 +-
be/src/pipeline/exec/scan_operator.cpp | 2 +-
be/src/pipeline/exec/scan_operator.h | 2 +-
be/src/pipeline/exec/select_operator.h | 31 +
be/src/pipeline/pipeline_x/operator.cpp | 2 +
.../pipeline_x/pipeline_x_fragment_context.cpp | 6 +
.../tpch_unique_sql_zstd_p0/sql/pipelinex_q01.out | 7 +
.../tpch_unique_sql_zstd_p0/sql/pipelinex_q02.out | 47 +
.../tpch_unique_sql_zstd_p0/sql/pipelinex_q03.out | 13 +
.../tpch_unique_sql_zstd_p0/sql/pipelinex_q04.out | 8 +
.../tpch_unique_sql_zstd_p0/sql/pipelinex_q05.out | 8 +
.../tpch_unique_sql_zstd_p0/sql/pipelinex_q06.out | 4 +
.../tpch_unique_sql_zstd_p0/sql/pipelinex_q07.out | 7 +
.../tpch_unique_sql_zstd_p0/sql/pipelinex_q08.out | 5 +
.../tpch_unique_sql_zstd_p0/sql/pipelinex_q09.out | 178 ++
.../tpch_unique_sql_zstd_p0/sql/pipelinex_q10.out | 23 +
.../tpch_unique_sql_zstd_p0/sql/pipelinex_q11.out | 2544 ++++++++++++++++++
.../tpch_unique_sql_zstd_p0/sql/pipelinex_q12.out | 5 +
.../tpch_unique_sql_zstd_p0/sql/pipelinex_q13.out | 40 +
.../tpch_unique_sql_zstd_p0/sql/pipelinex_q14.out | 4 +
.../tpch_unique_sql_zstd_p0/sql/pipelinex_q15.out | 4 +
.../tpch_unique_sql_zstd_p0/sql/pipelinex_q16.out | 2765 ++++++++++++++++++++
.../tpch_unique_sql_zstd_p0/sql/pipelinex_q17.out | 4 +
.../tpch_unique_sql_zstd_p0/sql/pipelinex_q18.out | 8 +
.../tpch_unique_sql_zstd_p0/sql/pipelinex_q19.out | 4 +
.../tpch_unique_sql_zstd_p0/sql/pipelinex_q20.out | 12 +
.../tpch_unique_sql_zstd_p0/sql/pipelinex_q21.out | 50 +
.../tpch_unique_sql_zstd_p0/sql/pipelinex_q22.out | 10 +
.../tpch_unique_sql_zstd_p0/sql/pipelinex_q01.sql | 22 +
.../tpch_unique_sql_zstd_p0/sql/pipelinex_q02.sql | 42 +
.../tpch_unique_sql_zstd_p0/sql/pipelinex_q03.sql | 24 +
.../tpch_unique_sql_zstd_p0/sql/pipelinex_q04.sql | 19 +
.../tpch_unique_sql_zstd_p0/sql/pipelinex_q05.sql | 25 +
.../tpch_unique_sql_zstd_p0/sql/pipelinex_q06.sql | 11 +
.../tpch_unique_sql_zstd_p0/sql/pipelinex_q07.sql | 39 +
.../tpch_unique_sql_zstd_p0/sql/pipelinex_q08.sql | 38 +
.../tpch_unique_sql_zstd_p0/sql/pipelinex_q09.sql | 32 +
.../tpch_unique_sql_zstd_p0/sql/pipelinex_q10.sql | 33 +
.../tpch_unique_sql_zstd_p0/sql/pipelinex_q11.sql | 28 +
.../tpch_unique_sql_zstd_p0/sql/pipelinex_q12.sql | 29 +
.../tpch_unique_sql_zstd_p0/sql/pipelinex_q13.sql | 21 +
.../tpch_unique_sql_zstd_p0/sql/pipelinex_q14.sql | 13 +
.../tpch_unique_sql_zstd_p0/sql/pipelinex_q15.sql | 20 +
.../tpch_unique_sql_zstd_p0/sql/pipelinex_q16.sql | 30 +
.../tpch_unique_sql_zstd_p0/sql/pipelinex_q17.sql | 16 +
.../tpch_unique_sql_zstd_p0/sql/pipelinex_q18.sql | 34 +
.../tpch_unique_sql_zstd_p0/sql/pipelinex_q19.sql | 35 +
.../tpch_unique_sql_zstd_p0/sql/pipelinex_q20.sql | 33 +
.../tpch_unique_sql_zstd_p0/sql/pipelinex_q21.sql | 39 +
.../tpch_unique_sql_zstd_p0/sql/pipelinex_q22.sql | 35 +
50 files changed, 6418 insertions(+), 6 deletions(-)
create mode 100644
regression-test/data/tpch_unique_sql_zstd_p0/sql/pipelinex_q01.out
create mode 100644
regression-test/data/tpch_unique_sql_zstd_p0/sql/pipelinex_q02.out
create mode 100644
regression-test/data/tpch_unique_sql_zstd_p0/sql/pipelinex_q03.out
create mode 100644
regression-test/data/tpch_unique_sql_zstd_p0/sql/pipelinex_q04.out
create mode 100644
regression-test/data/tpch_unique_sql_zstd_p0/sql/pipelinex_q05.out
create mode 100644
regression-test/data/tpch_unique_sql_zstd_p0/sql/pipelinex_q06.out
create mode 100644
regression-test/data/tpch_unique_sql_zstd_p0/sql/pipelinex_q07.out
create mode 100644
regression-test/data/tpch_unique_sql_zstd_p0/sql/pipelinex_q08.out
create mode 100644
regression-test/data/tpch_unique_sql_zstd_p0/sql/pipelinex_q09.out
create mode 100644
regression-test/data/tpch_unique_sql_zstd_p0/sql/pipelinex_q10.out
create mode 100644
regression-test/data/tpch_unique_sql_zstd_p0/sql/pipelinex_q11.out
create mode 100644
regression-test/data/tpch_unique_sql_zstd_p0/sql/pipelinex_q12.out
create mode 100644
regression-test/data/tpch_unique_sql_zstd_p0/sql/pipelinex_q13.out
create mode 100644
regression-test/data/tpch_unique_sql_zstd_p0/sql/pipelinex_q14.out
create mode 100644
regression-test/data/tpch_unique_sql_zstd_p0/sql/pipelinex_q15.out
create mode 100644
regression-test/data/tpch_unique_sql_zstd_p0/sql/pipelinex_q16.out
create mode 100644
regression-test/data/tpch_unique_sql_zstd_p0/sql/pipelinex_q17.out
create mode 100644
regression-test/data/tpch_unique_sql_zstd_p0/sql/pipelinex_q18.out
create mode 100644
regression-test/data/tpch_unique_sql_zstd_p0/sql/pipelinex_q19.out
create mode 100644
regression-test/data/tpch_unique_sql_zstd_p0/sql/pipelinex_q20.out
create mode 100644
regression-test/data/tpch_unique_sql_zstd_p0/sql/pipelinex_q21.out
create mode 100644
regression-test/data/tpch_unique_sql_zstd_p0/sql/pipelinex_q22.out
create mode 100644
regression-test/suites/tpch_unique_sql_zstd_p0/sql/pipelinex_q01.sql
create mode 100644
regression-test/suites/tpch_unique_sql_zstd_p0/sql/pipelinex_q02.sql
create mode 100644
regression-test/suites/tpch_unique_sql_zstd_p0/sql/pipelinex_q03.sql
create mode 100644
regression-test/suites/tpch_unique_sql_zstd_p0/sql/pipelinex_q04.sql
create mode 100644
regression-test/suites/tpch_unique_sql_zstd_p0/sql/pipelinex_q05.sql
create mode 100644
regression-test/suites/tpch_unique_sql_zstd_p0/sql/pipelinex_q06.sql
create mode 100644
regression-test/suites/tpch_unique_sql_zstd_p0/sql/pipelinex_q07.sql
create mode 100644
regression-test/suites/tpch_unique_sql_zstd_p0/sql/pipelinex_q08.sql
create mode 100644
regression-test/suites/tpch_unique_sql_zstd_p0/sql/pipelinex_q09.sql
create mode 100644
regression-test/suites/tpch_unique_sql_zstd_p0/sql/pipelinex_q10.sql
create mode 100644
regression-test/suites/tpch_unique_sql_zstd_p0/sql/pipelinex_q11.sql
create mode 100644
regression-test/suites/tpch_unique_sql_zstd_p0/sql/pipelinex_q12.sql
create mode 100644
regression-test/suites/tpch_unique_sql_zstd_p0/sql/pipelinex_q13.sql
create mode 100644
regression-test/suites/tpch_unique_sql_zstd_p0/sql/pipelinex_q14.sql
create mode 100644
regression-test/suites/tpch_unique_sql_zstd_p0/sql/pipelinex_q15.sql
create mode 100644
regression-test/suites/tpch_unique_sql_zstd_p0/sql/pipelinex_q16.sql
create mode 100644
regression-test/suites/tpch_unique_sql_zstd_p0/sql/pipelinex_q17.sql
create mode 100644
regression-test/suites/tpch_unique_sql_zstd_p0/sql/pipelinex_q18.sql
create mode 100644
regression-test/suites/tpch_unique_sql_zstd_p0/sql/pipelinex_q19.sql
create mode 100644
regression-test/suites/tpch_unique_sql_zstd_p0/sql/pipelinex_q20.sql
create mode 100644
regression-test/suites/tpch_unique_sql_zstd_p0/sql/pipelinex_q21.sql
create mode 100644
regression-test/suites/tpch_unique_sql_zstd_p0/sql/pipelinex_q22.sql
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]