Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
18 commits
Select commit Hold shift + click to select a range
e8196f4
Remove coalesce batches rule and deprecate CoalesceBatchesExec (#19622)
feniljain Jan 6, 2026
166ef81
Perf: Optimize `substring_index` via single-byte fast path and direc…
lyne7-sc Jan 6, 2026
1f654bb
feat: implement metrics for AsyncFuncExec (#19626)
feniljain Jan 7, 2026
ce08307
refactor: Use `Signature::coercible` for isnan/iszero (#19604)
kumarUjjawal Jan 7, 2026
680ddcc
feat: split BatchPartitioner::try_new into hash and round-robin const…
mohit7705 Jan 7, 2026
566bcde
Parquet: Push down supported list predicates (array_has/any/all) duri…
kosiew Jan 7, 2026
3a0ca4e
Remove dependency on `rust_decimal`, remove ignore of `RUSTSEC-2026-0…
alamb Jan 7, 2026
142f597
Store example data directly inside the datafusion-examples (#19141) (…
cj-zhukov Jan 8, 2026
35ff4ab
Allow logical optimizer to be run without evaluating now() & refactor…
adriangb Jan 8, 2026
646213e
feat: add Time type support to date_trunc function (#19640)
kumarUjjawal Jan 8, 2026
102caeb
minor: More comments to `ParquetOpener::open()` (#19677)
2010YOUY01 Jan 8, 2026
d18e670
feat: Allow log with non-integer base on decimals (#19372)
Yuvraj-cyborg Jan 8, 2026
1d5d63c
Feat: Allow pow with negative & non-integer exponent on decimals (#19…
Yuvraj-cyborg Jan 8, 2026
e6049de
Make default ListingFilesCache table scoped (#19616)
jizezhang Jan 8, 2026
aba7456
Add doc comments to `TableScopedPath`
alamb Jan 7, 2026
7e1ca8f
more comments
alamb Jan 7, 2026
8ac2922
Use nullable strings rather than NULL
alamb Jan 7, 2026
8a9bf43
Improve ListingTableUrl
alamb Jan 7, 2026
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
7 changes: 3 additions & 4 deletions .github/workflows/audit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,6 @@ jobs:
with:
tool: cargo-audit
- name: Run audit check
# RUSTSEC-2026-0001: https://rustsec.org/advisories/RUSTSEC-2026-0001.html
# underlying rkyv is patched, but rustsec database not yet updated
# Can remove when this is merged: https://github.com/rustsec/advisory-db/pull/2565
run: cargo audit --ignore RUSTSEC-2026-0001
# Note: you can ignore specific RUSTSEC issues using the `--ignore` flag ,for example:
# run: cargo audit --ignore RUSTSEC-2026-0001
run: cargo audit
Loading