Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
40 commits
Select commit Hold shift + click to select a range
e41c49c
Get working build
avantgardnerio Sep 16, 2025
963ad14
Add pool_size method to MemoryPool (#218) (#230)
joroKr21 Apr 9, 2024
f16c370
Groups accumulator for array_agg (#233)
svranesevic Jun 11, 2024
0318c84
Small array_agg improvement (#236)
lkt Apr 16, 2024
71b4ae0
Change Vec to builder in array_agg (#237)
lkt Apr 17, 2024
538a212
Move FileSinkExec::metrics to the correct place (#239)
joroKr21 Apr 22, 2024
491821e
Fix propagation of CSV options through protos (#245/10912)
svranesevic Jun 11, 2024
2800600
Change `FileSink.object_store_url` to Url (#248)
svranesevic Jul 1, 2024
6788f66
Avoid calling shutdown after failed write of AsyncWrite (#249) (#250)
joroKr21 Jul 4, 2024
be98245
AggregateExec: Take grouping sets into account for InputOrderMode (#1…
thinkharderdev Jul 7, 2024
694dced
Add customizable equality and hash functions to UDFs (#252)
joroKr21 Jul 12, 2024
fcef720
Add extension hooks for encoding and decoding UDAFs and UDWFs (#253)
joroKr21 Jul 17, 2024
a7db73c
Add NullState::is_valid and NullState::is_null (#254)
joroKr21 Jul 22, 2024
c2fa3e8
Fix approx_percentile_cont in presence of nulls (#255)
Dandandan Jul 30, 2024
d4e4c0a
Fix nullability of output (#256)
Dandandan Jul 31, 2024
29ba2db
MINOR: use workspace deps in proto-common (#10848) (#258)
mpurins-coralogix Aug 14, 2024
6b6d108
Preserve UDAF distincit flag in serde (#259)
joroKr21 Aug 21, 2024
298c01f
Use `Expr::display_name` to create `physical_name` (#257)
joroKr21 Aug 21, 2024
32babd0
Respect `IGNORE NULLS` flag in `ARRAY_AGG` (#260)
joroKr21 Aug 26, 2024
3a13c27
Serialize and deserialize `NullTreatment` (#261)
joroKr21 Aug 26, 2024
fc32ad8
Use std::mem for size_of and size_of_val (#262)
joroKr21 Aug 26, 2024
eab8a36
Minor optimization of the null handling in ArrayAggAccumulator (#263)
joroKr21 Aug 26, 2024
cf8b0eb
Support try_from_array and eq_array for ScalarValue::Union (#264)
joroKr21 Sep 2, 2024
7c113d4
Backport workaround for union is (not) null (#265)
Dandandan Sep 4, 2024
2902ece
Fix workaround for is not null (#266)
Dandandan Sep 5, 2024
84ebf4d
Support encoding and decoding UnnestExec (#267)
joroKr21 Sep 6, 2024
b8b6165
Cherry-pick is not null pushdown (#268)
Dandandan Sep 6, 2024
0ba8aeb
Hook for doing distributed `CollectLeft` joins (#269)
thinkharderdev Sep 20, 2024
6d3aec9
Make `aggregates::group_values` module public for use in dedup operat…
dispanser Sep 24, 2024
35e4472
Ignore writer shutdown error (#271)
fsdvh Sep 25, 2024
a71cb72
Add CoalescePartitionsExec (#272)
avantgardnerio Oct 4, 2024
ab843f1
Cherry pick upstream fix (#274)
avantgardnerio Oct 10, 2024
21c795e
Ensure that math functions fulfil the ColumnarValue contract (#275)
joroKr21 Oct 14, 2024
1cce4ba
Handle one-element array return value in ScalarFunctionExpr (#12965) …
joroKr21 Oct 19, 2024
df07551
Fix bug in `swap_hash_join` (#278)
thinkharderdev Nov 22, 2024
58eb9f2
V39: Support Duration in min/max agg functions (#283)
svranesevic Mar 19, 2025
b4c9d23
Fix panics in array_union (#287)
joroKr21 Mar 19, 2025
68350b2
Backport `GroupsAccumulator` for Duration min/max agg (#288)
svranesevic Mar 24, 2025
06e074a
Fix array_sort for empty record batch (#290)
joroKr21 Mar 24, 2025
cc4c7ec
fix: remove the Sized requirement on ExecutionPlan::name() (#11047)
waynexia Jun 23, 2024
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
4 changes: 0 additions & 4 deletions .github/actions/setup-rust-runtime/action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,6 @@ description: 'Setup Rust Runtime Environment'
runs:
using: "composite"
steps:
- name: Run sccache-cache
uses: mozilla-actions/[email protected]
- name: Configure runtime env
shell: bash
# do not produce debug symbols to keep memory usage down
Expand All @@ -31,8 +29,6 @@ runs:
# Set debuginfo=line-tables-only as debuginfo=0 causes immensely slow build
# See for more details: https://github.com/rust-lang/rust/issues/119560
run: |
echo "RUSTC_WRAPPER=sccache" >> $GITHUB_ENV
echo "SCCACHE_GHA_ENABLED=true" >> $GITHUB_ENV
echo "RUST_BACKTRACE=1" >> $GITHUB_ENV
echo "RUSTFLAGS=-C debuginfo=line-tables-only -C incremental=false" >> $GITHUB_ENV

43 changes: 0 additions & 43 deletions .github/workflows/audit.yml

This file was deleted.

52 changes: 0 additions & 52 deletions .github/workflows/dependencies.yml

This file was deleted.

Loading