Skip to content

Commit 0201565

Browse files
Merge branch 'main' into perf-octet-length
2 parents ae3ebcb + b818f93 commit 0201565

File tree

155 files changed

+9980
-1699
lines changed

Some content is hidden

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

155 files changed

+9980
-1699
lines changed

.github/workflows/audit.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ jobs:
4242
steps:
4343
- uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
4444
- name: Install cargo-audit
45-
uses: taiki-e/install-action@50cee16bd6b97b2579572f83cfa1c0a721b1e336 # v2.65.2
45+
uses: taiki-e/install-action@ff581034fb69296c525e51afd68cb9823bfbe4ed # v2.65.8
4646
with:
4747
tool: cargo-audit
4848
- name: Run audit check

.github/workflows/rust.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -421,7 +421,7 @@ jobs:
421421
sudo apt-get update -qq
422422
sudo apt-get install -y -qq clang
423423
- name: Setup wasm-pack
424-
uses: taiki-e/install-action@50cee16bd6b97b2579572f83cfa1c0a721b1e336 # v2.65.2
424+
uses: taiki-e/install-action@ff581034fb69296c525e51afd68cb9823bfbe4ed # v2.65.8
425425
with:
426426
tool: wasm-pack
427427
- name: Run tests with headless mode
@@ -741,7 +741,7 @@ jobs:
741741
- name: Setup Rust toolchain
742742
uses: ./.github/actions/setup-builder
743743
- name: Install cargo-msrv
744-
uses: taiki-e/install-action@50cee16bd6b97b2579572f83cfa1c0a721b1e336 # v2.65.2
744+
uses: taiki-e/install-action@ff581034fb69296c525e51afd68cb9823bfbe4ed # v2.65.8
745745
with:
746746
tool: cargo-msrv
747747

Cargo.lock

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

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -156,7 +156,7 @@ flate2 = "1.1.5"
156156
futures = "0.3"
157157
glob = "0.3.0"
158158
half = { version = "2.7.0", default-features = false }
159-
hashbrown = { version = "0.14.5", features = ["raw"] }
159+
hashbrown = { version = "0.16.1" }
160160
hex = { version = "0.4.3" }
161161
indexmap = "2.12.1"
162162
insta = { version = "1.45.0", features = ["glob", "filters"] }

datafusion-examples/examples/builtin_functions/main.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ async fn main() -> Result<()> {
8080

8181
let example: ExampleKind = std::env::args()
8282
.nth(1)
83-
.ok_or_else(|| DataFusionError::Execution(format!("Missing argument. {usage}")))?
83+
.unwrap_or_else(|| ExampleKind::All.to_string())
8484
.parse()
8585
.map_err(|_| DataFusionError::Execution(format!("Unknown example. {usage}")))?;
8686

datafusion-examples/examples/custom_data_source/main.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ async fn main() -> Result<()> {
108108

109109
let example: ExampleKind = std::env::args()
110110
.nth(1)
111-
.ok_or_else(|| DataFusionError::Execution(format!("Missing argument. {usage}")))?
111+
.unwrap_or_else(|| ExampleKind::All.to_string())
112112
.parse()
113113
.map_err(|_| DataFusionError::Execution(format!("Unknown example. {usage}")))?;
114114

datafusion-examples/examples/data_io/main.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@ async fn main() -> Result<()> {
116116

117117
let example: ExampleKind = std::env::args()
118118
.nth(1)
119-
.ok_or_else(|| DataFusionError::Execution(format!("Missing argument. {usage}")))?
119+
.unwrap_or_else(|| ExampleKind::All.to_string())
120120
.parse()
121121
.map_err(|_| DataFusionError::Execution(format!("Unknown example. {usage}")))?;
122122

datafusion-examples/examples/dataframe/main.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ async fn main() -> Result<()> {
8585

8686
let example: ExampleKind = std::env::args()
8787
.nth(1)
88-
.ok_or_else(|| DataFusionError::Execution(format!("Missing argument. {usage}")))?
88+
.unwrap_or_else(|| ExampleKind::All.to_string())
8989
.parse()
9090
.map_err(|_| DataFusionError::Execution(format!("Unknown example. {usage}")))?;
9191

datafusion-examples/examples/execution_monitoring/main.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ async fn main() -> Result<()> {
8484

8585
let example: ExampleKind = std::env::args()
8686
.nth(1)
87-
.ok_or_else(|| DataFusionError::Execution(format!("Missing argument. {usage}")))?
87+
.unwrap_or_else(|| ExampleKind::All.to_string())
8888
.parse()
8989
.map_err(|_| DataFusionError::Execution(format!("Unknown example. {usage}")))?;
9090

datafusion-examples/examples/external_dependency/main.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ async fn main() -> Result<()> {
7676

7777
let example: ExampleKind = std::env::args()
7878
.nth(1)
79-
.ok_or_else(|| DataFusionError::Execution(format!("Missing argument. {usage}")))?
79+
.unwrap_or_else(|| ExampleKind::All.to_string())
8080
.parse()
8181
.map_err(|_| DataFusionError::Execution(format!("Unknown example. {usage}")))?;
8282

0 commit comments

Comments
 (0)