Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
23 commits
Select commit Hold shift + click to select a range
8169342
fix: Ensure only tables or aliases that exist are projected (#52)
peasee Oct 29, 2024
24b7c1b
Support for metadata columns (`location`, `size`, `last_modified`) i…
phillipleblanc Mar 10, 2025
83811c9
Infer placeholder datatype for `Expr::InSubquery` (#80)
kczimm May 2, 2025
9813c26
Infer placeholder datatype after `LIMIT` clause as `DataType::Int64` …
kczimm May 5, 2025
abfdc26
Do not double alias Exprs
sgrebnov May 24, 2025
0851b1f
Add prefix to location metadata column (#82)
phillipleblanc May 14, 2025
6414578
Infer placeholder types for CASE expressions (#87)
phillipleblanc May 24, 2025
acd4c4e
Expand `infer_placeholder_types` to infer all possible placeholder ty…
phillipleblanc May 26, 2025
2b2536a
Fix `Expr::infer_placeholder_types` inference to not fail (#89)
phillipleblanc May 26, 2025
d780cc2
cherry-pick parquet patch (#94)
kczimm Aug 16, 2025
ef0c691
Fix array types coercion: preserve child element nullability for list…
sgrebnov Aug 25, 2025
30cbf7f
Expand `infer_placeholder_types` to infer all possible placeholder ty…
phillipleblanc May 26, 2025
fc889c8
do not enforce type guarantees on all Expr traversed in infer_placeho…
Jeadie Sep 9, 2025
deb34a9
Use UDTF function args in `LogicalPlan::TableScan` name (#98)
Jeadie Aug 30, 2025
b048c26
Implement timestamp_cast_dtype for SqliteDialect (#99)
krinart Sep 8, 2025
58c3af6
Custom timestamp format for DuckDB (#102)
krinart Sep 18, 2025
81d9a9d
Revert "cherry-pick parquet patch (#94)"
peasee Oct 27, 2025
5ad3d27
Support ExprNamed arguments to Scalar UDFs (#104)
mach-kernel Sep 25, 2025
b0a7326
resolve projection against `ListingTable` table_schema incl. partitio…
mach-kernel Oct 6, 2025
1b06765
fix: Ensure ListingTable partitions are pruned when filters are not u…
peasee Oct 8, 2025
e169fb6
FileScanConfig: Preserve schema metadata across serde boundary (#107)
mach-kernel Oct 8, 2025
8db4ce2
Merge conflict fixes
peasee Oct 27, 2025
9b8ab33
update arrow-rs fork
peasee Oct 27, 2025
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
54 changes: 20 additions & 34 deletions Cargo.lock

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

9 changes: 9 additions & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -232,3 +232,12 @@ unexpected_cfgs = { level = "warn", check-cfg = [
"cfg(tarpaulin_include)",
] }
unused_qualifications = "deny"

[patch.crates-io]
arrow = { git = "https://github.com/spiceai/arrow-rs.git", rev = "9f9c372ff5744488226462e3ea7d94ff47909833" } # spiceai-56
arrow-buffer = { git = "https://github.com/spiceai/arrow-rs.git", rev = "9f9c372ff5744488226462e3ea7d94ff47909833" } # spiceai-56
arrow-flight = { git = "https://github.com/spiceai/arrow-rs.git", rev = "9f9c372ff5744488226462e3ea7d94ff47909833" } # spiceai-56
arrow-ipc = { git = "https://github.com/spiceai/arrow-rs.git", rev = "9f9c372ff5744488226462e3ea7d94ff47909833" } # spiceai-56
arrow-ord = { git = "https://github.com/spiceai/arrow-rs.git", rev = "9f9c372ff5744488226462e3ea7d94ff47909833" } # spiceai-56
arrow-schema = { git = "https://github.com/spiceai/arrow-rs.git", rev = "9f9c372ff5744488226462e3ea7d94ff47909833" } # spiceai-56
parquet = { git = "https://github.com/spiceai/arrow-rs.git", rev = "9f9c372ff5744488226462e3ea7d94ff47909833" } # spiceai-56
2 changes: 2 additions & 0 deletions datafusion/catalog-listing/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,8 @@ object_store = { workspace = true }
tokio = { workspace = true }

[dev-dependencies]
chrono = { workspace = true }
tempfile = { workspace = true }

[lints]
workspace = true
Expand Down
Loading