Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
20 commits
Select commit Hold shift + click to select a range
995580d
Get working build
avantgardnerio Dec 15, 2025
e155e6c
Add pool_size method to MemoryPool (#218) (#230)
joroKr21 Aug 26, 2024
400466e
Respect `IGNORE NULLS` flag in `ARRAY_AGG` (#260/#15544) v48
avantgardnerio Sep 18, 2025
781f52a
Hook for doing distributed `CollectLeft` joins (#269/#12523)
thinkharderdev Sep 20, 2024
03ddb4e
Ignore writer shutdown error (#271)
fsdvh Sep 25, 2024
aaa434b
Fix panics in array_union (#287/#15149) v48
joroKr21 Mar 19, 2025
cfccf2f
Fix array_sort for empty record batch (#290) (#15149) v48
joroKr21 Mar 24, 2025
1400d06
Disable grouping set in CSE (fork only)
Dandandan Apr 10, 2025
da38fa6
Segfault in ByteGroupValueBuilder (#294) (#15968) v50
thinkharderdev May 7, 2025
e86687b
Fix `CoalescePartitionsExec` proto serialization (#15824) (#299) v48
joroKr21 Jun 19, 2025
25ea20a
Add JoinContext with JoinLeftData to TaskContext in HashJoinExec (#300)
thinkharderdev Jun 21, 2025
dd0f742
Push limits past windows (#337) (#17347) v50
avantgardnerio Sep 2, 2025
9359b65
Use `Expr::qualified_name()` and `Column::new()` to extract partition…
masonh22 Sep 24, 2025
31dfa35
Make limit pushdown work for SortPreservingMergeExec (#17893) (#361)
Dandandan Oct 6, 2025
ce862e6
fix: escape underscores when simplifying `starts_with` (#19077) (#392…
avantgardnerio Jan 12, 2026
6b5d94d
Forward-porting protobuf decode logic for scalar nested values from d…
dispanser Jan 28, 2026
469b22d
fix: The limit_pushdown physical optimization rule removes limits in …
masonh22 Feb 2, 2026
9dc8a4c
Fix serde of window lead/lag defaults #20608 (#399)
avantgardnerio Mar 2, 2026
079b763
perf: Improve the performance of WINDOW functions with many partition…
avantgardnerio Mar 4, 2026
c38485e
point to propper arrow-rs version
dispanser Mar 6, 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
4 changes: 2 additions & 2 deletions .github/actions/setup-builder/action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ inputs:
rust-version:
description: 'version of rust to install (e.g. stable)'
required: true
default: 'stable'
default: '1.86.0'
runs:
using: "composite"
steps:
Expand All @@ -37,7 +37,7 @@ runs:
run: |
RETRY=("ci/scripts/retry" timeout 120)
echo "Installing ${{ inputs.rust-version }}"
"${RETRY[@]}" rustup toolchain install ${{ inputs.rust-version }}
"${RETRY[@]}" rustup toolchain install ${{ inputs.rust-version }} --no-self-update
"${RETRY[@]}" rustup default ${{ inputs.rust-version }}
"${RETRY[@]}" rustup component add rustfmt
- name: Configure rust runtime env
Expand Down
7 changes: 3 additions & 4 deletions .github/actions/setup-macos-aarch64-builder/action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ inputs:
rust-version:
description: 'version of rust to install (e.g. stable)'
required: true
default: 'stable'
default: '1.86.0'
runs:
using: "composite"
steps:
Expand All @@ -39,9 +39,8 @@ runs:
- name: Setup Rust toolchain
shell: bash
run: |
rustup update stable
rustup toolchain install stable
rustup default stable
rustup toolchain install 1.86.0 --no-self-update
rustup default 1.86.0
rustup component add rustfmt
- name: Setup rust cache
uses: Swatinem/rust-cache@v2
Expand Down
7 changes: 3 additions & 4 deletions .github/actions/setup-macos-builder/action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ inputs:
rust-version:
description: 'version of rust to install (e.g. stable)'
required: true
default: 'stable'
default: '1.86.0'
runs:
using: "composite"
steps:
Expand All @@ -39,9 +39,8 @@ runs:
- name: Setup Rust toolchain
shell: bash
run: |
rustup update stable
rustup toolchain install stable
rustup default stable
rustup toolchain install 1.86.0 --no-self-update
rustup default 1.86.0
rustup component add rustfmt
- name: Configure rust runtime env
uses: ./.github/actions/setup-rust-runtime
6 changes: 3 additions & 3 deletions .github/actions/setup-windows-builder/action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ inputs:
rust-version:
description: 'version of rust to install (e.g. stable)'
required: true
default: 'stable'
default: '1.86.0'
runs:
using: "composite"
steps:
Expand All @@ -39,8 +39,8 @@ runs:
shell: bash
run: |
# Avoid self update to avoid CI failures: https://github.com/apache/datafusion/issues/9653
rustup toolchain install stable --no-self-update
rustup default stable
rustup toolchain install 1.86.0 --no-self-update
rustup default 1.86.0
rustup component add rustfmt
- name: Configure rust runtime env
uses: ./.github/actions/setup-rust-runtime
43 changes: 8 additions & 35 deletions .github/pull_request_template.md
Original file line number Diff line number Diff line change
@@ -1,40 +1,13 @@
## Which issue does this PR close?
<!--- Replace this ticket id with a real ticket when not working on a hotfix -->
[VTX-9685]

<!--
We generally require a GitHub issue to be filed for all bug fixes and enhancements and this helps us generate change logs for our releases. You can link an issue to this PR using the GitHub syntax. For example `Closes #123` indicates that this PR will close issue #123.
-->
Upstream PR #: <!-- please try to make an upstream PR and put the number here, even if it isn't merged yet -->

<<<<<<< HEAD
- Closes #.
=======
or
>>>>>>> 7810e0f9ea (Get working build)

## Rationale for this change
[ ] This PR is for Coralogix only (please document why in your commit message)

<!--
Why are you proposing this change? If this is already explained clearly in the issue then this section is not needed.
Explaining clearly why changes are proposed helps reviewers understand your changes and offer better suggestions for fixes.
-->

## What changes are included in this PR?

<!--
There is no need to duplicate the description in the issue here but it is sometimes worth providing a summary of the individual changes in this PR.
-->

## Are these changes tested?

<!--
We typically require tests for all PRs in order to:
1. Prevent the code from being accidentally broken by subsequent changes
2. Serve as another way to document the expected behavior of the code

If tests are not included in your PR, please explain why (for example, are they covered by existing tests)?
-->

## Are there any user-facing changes?

<!--
If there are user-facing changes then we may require documentation to be updated before approving the PR.
-->

<!--
If there are any breaking changes to public APIs, please add the `api change` label.
-->
47 changes: 0 additions & 47 deletions .github/workflows/audit.yml

This file was deleted.

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

This file was deleted.

51 changes: 0 additions & 51 deletions .github/workflows/dev.yml

This file was deleted.

Loading
Loading