This is an automated email from the ASF dual-hosted git repository.

richox pushed a change to branch dev-columnar-agg-buf
in repository https://gitbox.apache.org/repos/asf/auron.git


    omit e04788a2 Implement columnar aggregate buffers
     add ce8b558a [AURON #1911][clippy] Enable -D warnings and resolve related 
issues (#1922)
     add b1b5fefe [AURON #1814][Correctness Testing] Spark 3.3 - Add Sort 
operator related tests  (#1820)
     add bfa2b1f0 [AURON #1926] ci: Remove opt-level=0 sed command to improve 
TPC-DS performance (#1927)
     add 8311710c [AURON #1769] Remove unused legacy files (#1931)
     add e73ae8c3 [AURON #1937] [ci] Skip TPCDS test q14b (#1939)
     add 4512eee0 Implement columnar aggregate buffers

This update added new revisions after undoing existing revisions.
That is to say, some revisions that were in the old version of the
branch are not in the new version.  This situation occurs
when a user --force pushes a change and generates a repository
containing something like this:

 * -- * -- B -- O -- O -- O   (e04788a2)
            \
             N -- N -- N   refs/heads/dev-columnar-agg-buf (4512eee0)

You should already have received notification emails for all of the O
revisions, and so the following emails describe only the N revisions
from the common base, B.

Any revisions marked "omit" are not gone; other references still
refer to them.  Any revisions marked "discard" are gone forever.

No new revisions were added by this update.

Summary of changes:
 .github/workflows/build-arm-releases.yml           |   1 -
 .github/workflows/tpcds-reusable.yml               |   7 +-
 Cargo.toml                                         |  85 +++++++
 .../auron/utils/AuronSparkTestSettings.scala       |  15 ++
 .../org/apache/spark/sql/AuronDataFrameSuite.scala | 280 +++++++++++++++++++++
 dev/auron-it/dependency-reduced-pom.xml            | 192 --------------
 dev/auron-it/run-it.sh                             |   2 +-
 dev/mvn-build-helper/build-native.sh               |   3 +-
 dev/run-tpcds-test                                 |  68 -----
 dev/utils.sh                                       |  65 -----
 native-engine/auron-jni-bridge/Cargo.toml          |   3 +
 native-engine/auron-memmgr/Cargo.toml              |   3 +
 native-engine/auron-memmgr/src/spill.rs            |   7 +-
 native-engine/auron-planner/Cargo.toml             |   3 +
 native-engine/auron-planner/build.rs               |   4 +-
 native-engine/auron-planner/src/error.rs           |  16 +-
 native-engine/auron-planner/src/lib.rs             |   3 +-
 native-engine/auron-planner/src/planner.rs         |  55 ++--
 native-engine/auron/Cargo.toml                     |   3 +
 native-engine/auron/src/alloc.rs                   |   2 +-
 native-engine/auron/src/exec.rs                    |   4 +-
 native-engine/auron/src/logging.rs                 |   8 +-
 native-engine/auron/src/rt.rs                      |   4 +-
 native-engine/datafusion-ext-commons/Cargo.toml    |   3 +
 .../datafusion-ext-commons/src/arrow/cast.rs       |   6 +-
 .../datafusion-ext-commons/src/arrow/coalesce.rs   |  20 +-
 .../src/arrow/eq_comparator.rs                     | 160 ++++++------
 .../datafusion-ext-commons/src/arrow/selection.rs  |  14 +-
 .../datafusion-ext-commons/src/hadoop_fs.rs        |   2 +-
 .../datafusion-ext-commons/src/hash/xxhash.rs      |   2 +-
 .../datafusion-ext-commons/src/io/batch_serde.rs   |  18 +-
 .../src/io/ipc_compression.rs                      |   2 +-
 native-engine/datafusion-ext-commons/src/io/mod.rs |   2 +-
 .../datafusion-ext-commons/src/io/scalar_serde.rs  |   2 +-
 native-engine/datafusion-ext-commons/src/lib.rs    |   4 +-
 .../datafusion-ext-commons/src/spark_bit_array.rs  |   2 +-
 .../datafusion-ext-commons/src/spark_hash.rs       |  14 +-
 native-engine/datafusion-ext-exprs/Cargo.toml      |   3 +
 .../src/bloom_filter_might_contain.rs              |   4 +-
 .../datafusion-ext-exprs/src/get_indexed_field.rs  |   4 +-
 .../datafusion-ext-exprs/src/get_map_value.rs      |  16 +-
 .../datafusion-ext-exprs/src/named_struct.rs       |   2 +-
 native-engine/datafusion-ext-exprs/src/row_num.rs  |   2 +-
 .../src/spark_scalar_subquery_wrapper.rs           |   4 +-
 .../datafusion-ext-exprs/src/spark_udf_wrapper.rs  |   2 +-
 native-engine/datafusion-ext-functions/Cargo.toml  |   3 +
 .../src/brickhouse/array_union.rs                  |   1 -
 native-engine/datafusion-ext-functions/src/lib.rs  |   1 +
 .../datafusion-ext-functions/src/spark_bround.rs   |   4 +-
 .../src/spark_check_overflow.rs                    |   3 +-
 .../datafusion-ext-functions/src/spark_crypto.rs   |   1 +
 .../datafusion-ext-functions/src/spark_dates.rs    |   2 +-
 .../src/spark_get_json_object.rs                   |   6 +-
 .../datafusion-ext-functions/src/spark_hash.rs     |   2 +-
 .../datafusion-ext-functions/src/spark_initcap.rs  |   2 +-
 .../src/spark_make_decimal.rs                      |   3 +-
 .../datafusion-ext-functions/src/spark_round.rs    |   1 +
 .../datafusion-ext-functions/src/spark_strings.rs  |   2 +-
 native-engine/datafusion-ext-plans/Cargo.toml      |   3 +
 .../src/agg/spark_udaf_wrapper.rs                  |   1 +
 .../src/common/execution_context.rs                |   2 +
 .../src/common/row_null_checker.rs                 |   1 +
 .../src/shuffle/buffered_data.rs                   |   1 +
 63 files changed, 616 insertions(+), 544 deletions(-)
 create mode 100644 
auron-spark-tests/spark33/src/test/scala/org/apache/spark/sql/AuronDataFrameSuite.scala
 delete mode 100644 dev/auron-it/dependency-reduced-pom.xml
 delete mode 100755 dev/run-tpcds-test
 delete mode 100644 dev/utils.sh

Reply via email to