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

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


    omit dc995f1d fix UDAF fallback bug when handling DeclarativeAggregator
     add 9b94711a bump spark-3.5 version to 3.5.7 (#1353)
     add 7f6643d5 [AURON #1351] Unify GitHub Actions runner image to Ubuntu 
24.04 (#1352)
     add 498e8fbc [AURON #1344]Delete unused profile in pom.xml (#1345)
     add 8ccf7980 [AURON #1355] Upgrade actions/cache from v3 to v4 in 
`build-ce7-release.yml` (#1356)
     add 462490f6 [AURON #1339] Introduce AuronConfiguration (#1340)
     add fe580dda [AURON #1341] Eliminate hardcoded conf/class key in the 
AuronSparkSessionExtension class (#1342)
     add a5ddb76f [AURON #1358] Rename package name for hadoop-shim module 
(#1359)
     add 7e86a7b4 bump maven version to 3.9.11 (#1350)
     add c3fc3f83 Bump serde from 1.0.226 to 1.0.227 (#1357)
     add 268e852f remove 'Exec' from nodeName (#1349)
     add 6e522fed [AURON #1365] Fix artifact name formatting issue with 
conditional version parameters (#1366)
     add 24ccb4a9 [AURON #1367] Bump Uniffle from 0.9.2 to 0.10.0 (#1354)
     add e8b447ed fix UDAF fallback bug when handling DeclarativeAggregator

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   (dc995f1d)
            \
             N -- N -- N   refs/heads/dev-fix-declar-agg (e8b447ed)

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-ce7-releases.yml           |   4 +-
 .github/workflows/delete-workflow-runs.yml         |   2 +-
 .github/workflows/license.yml                      |   2 +-
 .github/workflows/stale.yml                        |   2 +-
 .github/workflows/style.yml                        |   2 +-
 .github/workflows/tpcds-reusable.yml               |  39 +++--
 .github/workflows/uniffle.yml                      |   2 +-
 Cargo.lock                                         |  26 ++--
 {common => auron-core}/pom.xml                     |  33 ++--
 .../auron/configuration/AuronConfiguration.java    | 170 +++++++++++++++++++++
 .../apache/auron/configuration/ConfigOption.java   |  96 ++++++++++++
 .../apache/auron/configuration/ConfigOptions.java  | 148 ++++++++++++++++++
 .../java/org/apache/auron/util/Preconditions.java  |  64 ++++++++
 .../configuration/AuronConfigurationTest.java      |  51 +++++++
 .../auron/configuration/ConfigOptionTest.java      |  25 +--
 .../configuration/MockAuronConfiguration.java      |  63 ++++++++
 dev/reformat                                       |   2 +-
 .../hadoop/fs}/FSDataInputWrapper.scala            |   2 +-
 .../hadoop/fs}/FSDataOutputWrapper.scala           |   2 +-
 native-engine/auron-jni-bridge/src/jni_bridge.rs   |   8 +-
 native-engine/auron/Cargo.toml                     |   2 +-
 pom.xml                                            |  21 +--
 .../auron/plan/NativeProjectExecProvider.scala     |   6 +-
 .../plan/NativeShuffledHashJoinExecProvider.scala  |   6 +-
 .../plan/NativeSortMergeJoinExecProvider.scala     |   4 +-
 .../java/org/apache/spark/sql/auron/JniBridge.java |   8 +-
 .../sql/auron/AuronSparkSessionExtension.scala     |   6 +-
 .../spark/sql/auron/SparkUDAFWrapperContext.scala  |   2 +-
 28 files changed, 688 insertions(+), 110 deletions(-)
 copy {common => auron-core}/pom.xml (72%)
 create mode 100644 
auron-core/src/main/java/org/apache/auron/configuration/AuronConfiguration.java
 create mode 100644 
auron-core/src/main/java/org/apache/auron/configuration/ConfigOption.java
 create mode 100644 
auron-core/src/main/java/org/apache/auron/configuration/ConfigOptions.java
 create mode 100644 
auron-core/src/main/java/org/apache/auron/util/Preconditions.java
 create mode 100644 
auron-core/src/test/java/org/apache/auron/configuration/AuronConfigurationTest.java
 copy 
spark-extension-shims-spark3/src/main/java/org/apache/spark/sql/auron/ForceApplyShuffledHashJoinInterceptor.java
 => 
auron-core/src/test/java/org/apache/auron/configuration/ConfigOptionTest.java 
(54%)
 create mode 100644 
auron-core/src/test/java/org/apache/auron/configuration/MockAuronConfiguration.java
 rename hadoop-shim/src/main/scala/org/apache/{spark/auron => 
auron/hadoop/fs}/FSDataInputWrapper.scala (98%)
 rename hadoop-shim/src/main/scala/org/apache/{spark/auron => 
auron/hadoop/fs}/FSDataOutputWrapper.scala (97%)

Reply via email to