Skip to content

Commit 876cf5f

Browse files
authored
Merge branch 'main' into GH-15831-substrait-output-types
2 parents 6d0fbdc + 70caf37 commit 876cf5f

212 files changed

Lines changed: 16981 additions & 4353 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.github/workflows/audit.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ jobs:
4545
steps:
4646
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
4747
- name: Install cargo-audit
48-
uses: taiki-e/install-action@c070f87102a1c75b3183910f391c1cb887fe13c8 # v2.77.6
48+
uses: taiki-e/install-action@213ccc1a076163c093f914550b94feb90fab916d # v2.79.2
4949
with:
5050
tool: cargo-audit
5151
- name: Run audit check

.github/workflows/breaking_changes_detector.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ jobs:
8989
9090
- name: Install cargo-semver-checks
9191
if: steps.changed_crates.outputs.packages != ''
92-
uses: taiki-e/install-action@c070f87102a1c75b3183910f391c1cb887fe13c8 # v2.77.6
92+
uses: taiki-e/install-action@213ccc1a076163c093f914550b94feb90fab916d # v2.79.2
9393
with:
9494
tool: cargo-semver-checks
9595

.github/workflows/codeql.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,11 +45,11 @@ jobs:
4545
persist-credentials: false
4646

4747
- name: Initialize CodeQL
48-
uses: github/codeql-action/init@68bde559dea0fdcac2102bfdf6230c5f70eb485e # v4
48+
uses: github/codeql-action/init@9e0d7b8d25671d64c341c19c0152d693099fb5ba # v4
4949
with:
5050
languages: actions
5151

5252
- name: Perform CodeQL Analysis
53-
uses: github/codeql-action/analyze@68bde559dea0fdcac2102bfdf6230c5f70eb485e # v4
53+
uses: github/codeql-action/analyze@9e0d7b8d25671d64c341c19c0152d693099fb5ba # v4
5454
with:
5555
category: "/language:actions"

.github/workflows/dev.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ jobs:
6464
source ci/scripts/utils/tool_versions.sh
6565
echo "LYCHEE_VERSION=${LYCHEE_VERSION}" >> "$GITHUB_ENV"
6666
- name: Install lychee
67-
uses: taiki-e/install-action@c070f87102a1c75b3183910f391c1cb887fe13c8 # v2.77.6
67+
uses: taiki-e/install-action@213ccc1a076163c093f914550b94feb90fab916d # v2.79.2
6868
with:
6969
tool: lychee@${{ env.LYCHEE_VERSION }}
7070
- name: Run markdown link check

.github/workflows/rust.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -429,7 +429,7 @@ jobs:
429429
sudo apt-get update -qq
430430
sudo apt-get install -y -qq clang
431431
- name: Setup wasm-pack
432-
uses: taiki-e/install-action@c070f87102a1c75b3183910f391c1cb887fe13c8 # v2.77.6
432+
uses: taiki-e/install-action@213ccc1a076163c093f914550b94feb90fab916d # v2.79.2
433433
with:
434434
tool: wasm-pack
435435
- name: Run tests with headless mode
@@ -774,7 +774,7 @@ jobs:
774774
- name: Setup Rust toolchain
775775
uses: ./.github/actions/setup-builder
776776
- name: Install cargo-msrv
777-
uses: taiki-e/install-action@c070f87102a1c75b3183910f391c1cb887fe13c8 # v2.77.6
777+
uses: taiki-e/install-action@213ccc1a076163c093f914550b94feb90fab916d # v2.79.2
778778
with:
779779
tool: cargo-msrv
780780

Cargo.lock

Lines changed: 58 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -63,6 +63,8 @@ See [use cases] for examples. The following related subprojects target end users
6363

6464
- [DataFusion Python](https://github.com/apache/datafusion-python/) offers a Python interface for SQL and DataFrame
6565
queries.
66+
- [DataFusion Java](https://github.com/apache/datafusion-java/) offers a Java interface for SQL and DataFrame
67+
queries.
6668
- [DataFusion Comet](https://github.com/apache/datafusion-comet/) is an accelerator for Apache Spark based on
6769
DataFusion.
6870

benchmarks/src/bin/external_aggr.rs

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -326,7 +326,9 @@ impl ExternalAggrConfig {
326326
let config = ListingTableConfig::new(table_path).with_listing_options(options);
327327
let config = config.infer_schema(&state).await?;
328328

329-
Ok(Arc::new(ListingTable::try_new(config)?))
329+
Ok(Arc::new(ListingTable::try_new(config)?.with_cache(
330+
ctx.runtime_env().cache_manager.get_file_statistic_cache(),
331+
)))
330332
}
331333

332334
fn iterations(&self) -> usize {

benchmarks/src/imdb/run.rs

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -470,7 +470,9 @@ impl RunOpt {
470470
_ => unreachable!(),
471471
};
472472

473-
Ok(Arc::new(ListingTable::try_new(config)?))
473+
Ok(Arc::new(ListingTable::try_new(config)?.with_cache(
474+
ctx.runtime_env().cache_manager.get_file_statistic_cache(),
475+
)))
474476
}
475477

476478
fn iterations(&self) -> usize {

benchmarks/src/sort_pushdown.rs

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -273,7 +273,9 @@ impl RunOpt {
273273
.with_listing_options(options)
274274
.with_schema(schema);
275275

276-
Ok(Arc::new(ListingTable::try_new(config)?))
276+
Ok(Arc::new(ListingTable::try_new(config)?.with_cache(
277+
ctx.runtime_env().cache_manager.get_file_statistic_cache(),
278+
)))
277279
}
278280

279281
fn iterations(&self) -> usize {

0 commit comments

Comments
 (0)