Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
60 changes: 17 additions & 43 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

44 changes: 44 additions & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -219,3 +219,47 @@ uninlined_format_args = "warn"
[workspace.lints.rust]
unexpected_cfgs = { level = "warn", check-cfg = ["cfg(tarpaulin)", "cfg(tarpaulin_include)"] }
unused_qualifications = "deny"

# pin to pre-release arrow
#patch.crates-io]
#arrow = { git = "https://github.com/apache/arrow-rs.git", rev = "52d8d568f4ddd9069b743fc0eab17ffe102da35b" }
#arrow-array = { git = "https://github.com/apache/arrow-rs.git", rev = "52d8d568f4ddd9069b743fc0eab17ffe102da35b" }
#arrow-buffer = { git = "https://github.com/apache/arrow-rs.git", rev = "52d8d568f4ddd9069b743fc0eab17ffe102da35b" }
#arrow-cast = { git = "https://github.com/apache/arrow-rs.git", rev = "52d8d568f4ddd9069b743fc0eab17ffe102da35b" }
#arrow-data = { git = "https://github.com/apache/arrow-rs.git", rev = "52d8d568f4ddd9069b743fc0eab17ffe102da35b" }
#arrow-ipc = { git = "https://github.com/apache/arrow-rs.git", rev = "52d8d568f4ddd9069b743fc0eab17ffe102da35b" }
#arrow-schema = { git = "https://github.com/apache/arrow-rs.git", rev = "52d8d568f4ddd9069b743fc0eab17ffe102da35b" }
#arrow-select = { git = "https://github.com/apache/arrow-rs.git", rev = "52d8d568f4ddd9069b743fc0eab17ffe102da35b" }
#arrow-string = { git = "https://github.com/apache/arrow-rs.git", rev = "52d8d568f4ddd9069b743fc0eab17ffe102da35b" }
#arrow-ord = { git = "https://github.com/apache/arrow-rs.git", rev = "52d8d568f4ddd9069b743fc0eab17ffe102da35b" }
#arrow-flight = { git = "https://github.com/apache/arrow-rs.git", rev = "52d8d568f4ddd9069b743fc0eab17ffe102da35b" }
#parquet = { git = "https://github.com/apache/arrow-rs.git", rev = "52d8d568f4ddd9069b743fc0eab17ffe102da35b" }

# pin to https://github.com/apache/arrow-rs/pull/7650
[patch.crates-io]
arrow = { git = "https://github.com/alamb/arrow-rs.git", rev = "99161728b473dc9d0ee1b8a1387ec94110cfc1cc" }
arrow-array = { git = "https://github.com/alamb/arrow-rs.git", rev = "99161728b473dc9d0ee1b8a1387ec94110cfc1cc" }
arrow-buffer = { git = "https://github.com/alamb/arrow-rs.git", rev = "99161728b473dc9d0ee1b8a1387ec94110cfc1cc" }
arrow-cast = { git = "https://github.com/alamb/arrow-rs.git", rev = "99161728b473dc9d0ee1b8a1387ec94110cfc1cc" }
arrow-data = { git = "https://github.com/alamb/arrow-rs.git", rev = "99161728b473dc9d0ee1b8a1387ec94110cfc1cc" }
arrow-ipc = { git = "https://github.com/alamb/arrow-rs.git", rev = "99161728b473dc9d0ee1b8a1387ec94110cfc1cc" }
arrow-schema = { git = "https://github.com/alamb/arrow-rs.git", rev = "99161728b473dc9d0ee1b8a1387ec94110cfc1cc" }
arrow-select = { git = "https://github.com/alamb/arrow-rs.git", rev = "99161728b473dc9d0ee1b8a1387ec94110cfc1cc" }
arrow-string = { git = "https://github.com/alamb/arrow-rs.git", rev = "99161728b473dc9d0ee1b8a1387ec94110cfc1cc" }
arrow-ord = { git = "https://github.com/alamb/arrow-rs.git", rev = "99161728b473dc9d0ee1b8a1387ec94110cfc1cc" }
arrow-flight = { git = "https://github.com/alamb/arrow-rs.git", rev = "99161728b473dc9d0ee1b8a1387ec94110cfc1cc" }
parquet = { git = "https://github.com/alamb/arrow-rs.git", rev = "99161728b473dc9d0ee1b8a1387ec94110cfc1cc" }


#arrow = { path= "/Users/andrewlamb/Software/arrow-rs/arrow" }
#arrow-array = { path= "/Users/andrewlamb/Software/arrow-rs/arrow-array" }
#arrow-buffer = { path= "/Users/andrewlamb/Software/arrow-rs/arrow-buffer" }
#arrow-cast = { path= "/Users/andrewlamb/Software/arrow-rs/arrow-cast" }
#arrow-data = { path= "/Users/andrewlamb/Software/arrow-rs/arrow-data" }
#arrow-ipc = { path= "/Users/andrewlamb/Software/arrow-rs/arrow-ipc" }
#arrow-schema = { path= "/Users/andrewlamb/Software/arrow-rs/arrow-schema" }
#arrow-select = { path= "/Users/andrewlamb/Software/arrow-rs/arrow-select" }
#arrow-string = { path= "/Users/andrewlamb/Software/arrow-rs/arrow-string" }
#arrow-ord = { path= "/Users/andrewlamb/Software/arrow-rs/arrow-ord" }
#arrow-flight = { path= "/Users/andrewlamb/Software/arrow-rs/arrow-flight" }
#parquet = { path= "/Users/andrewlamb/Software/arrow-rs/parquet" }
2 changes: 1 addition & 1 deletion datafusion/core/src/datasource/listing/table.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1880,7 +1880,7 @@ mod tests {
ParquetFormat::default().get_ext(),
FileCompressionType::UNCOMPRESSED,
Some(config_map),
2,
4,
)
.await?;
Ok(())
Expand Down
Loading
Loading