Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
59 commits
Select commit Hold shift + click to select a range
d12ee2c
DF version update
m09526 Sep 18, 2025
56d9ddc
Mostly written
m09526 Sep 18, 2025
598c41c
More updates
m09526 Sep 18, 2025
4b15457
Test
m09526 Sep 18, 2025
06afe22
Bug check
m09526 Sep 19, 2025
cdace78
Fixes
m09526 Sep 19, 2025
f3564dc
Remove method
m09526 Sep 19, 2025
d3f5ede
Tests passing
m09526 Sep 19, 2025
abb429f
Null equals
m09526 Sep 19, 2025
0494bb6
Remove test
m09526 Sep 19, 2025
6b8a32f
Clippy warnings
m09526 Sep 19, 2025
5d5f028
Merge branch 'develop' into 5639-sum-aggregation-in-datafusion-change…
m09526 Sep 19, 2025
21f10cc
Test for cast
m09526 Sep 19, 2025
0bafdef
Tests pass
m09526 Sep 19, 2025
cbadc5c
refactor
m09526 Sep 19, 2025
77923ea
Clippy
m09526 Sep 19, 2025
e9be137
Merge branch 'develop' into 5639-sum-aggregation-in-datafusion-change…
m09526 Oct 8, 2025
dffdfdf
Restrict cast types
m09526 Oct 8, 2025
6596f4e
Error check cast
m09526 Oct 8, 2025
e7e3c52
Nullable
m09526 Oct 8, 2025
b108a0f
Add tests
m09526 Oct 8, 2025
916f0e5
Fix up some tests
m09526 Oct 8, 2025
9cf5d60
Restart test
m09526 Oct 8, 2025
e9afd65
Cast succeeds
m09526 Oct 8, 2025
8381b58
Cast succeeds
m09526 Oct 8, 2025
00a9fe6
Add return type tests
m09526 Oct 8, 2025
a5bf343
Todo
m09526 Oct 8, 2025
bfd73c5
All unit tests done
m09526 Oct 9, 2025
411b23f
Clippy
m09526 Oct 9, 2025
7a954b9
Clippy
m09526 Oct 9, 2025
ed2a2a2
Merge branch 'develop' into 5639-sum-aggregation-in-datafusion-change…
m09526 Oct 9, 2025
e36f7db
Merge branch 'develop' into 5639-sum-aggregation-in-datafusion-change…
m09526 Oct 10, 2025
3994b1a
More code moves
m09526 Oct 10, 2025
7a6ac59
Tests pass
m09526 Oct 10, 2025
1ba10bc
Merge branch '5409-write-java-side-df-query-code' into 5639-sum-aggre…
m09526 Oct 10, 2025
b97b6e0
Fix sort problem
m09526 Oct 10, 2025
808f2fe
Re-enable tests
m09526 Oct 10, 2025
efb7b9c
WIP query test
m09526 Oct 10, 2025
278938b
minor comment move
m09526 Oct 10, 2025
f09a145
Merge branch 'develop' into 5639-sum-aggregation-in-datafusion-change…
m09526 Oct 15, 2025
b316a5b
Merge branch 'develop' into 5639-sum-aggregation-in-datafusion-change…
m09526 Oct 20, 2025
1c20cf3
Merge branch 'develop' into 5639-sum-aggregation-in-datafusion-change…
m09526 Oct 21, 2025
f548ba0
Merge branch 'develop' into 5639-sum-aggregation-in-datafusion-change…
m09526 Oct 22, 2025
75e8bab
Start filter fix
m09526 Oct 22, 2025
5cf9157
Apply fix
m09526 Oct 22, 2025
383f898
Unit tests
m09526 Oct 22, 2025
9744bb6
Unit tests done
m09526 Oct 22, 2025
56d5bd6
WIP: Utf8View not being handled
m09526 Oct 22, 2025
d9a738a
Fix casting
m09526 Oct 23, 2025
95e120d
Reinstate tests
m09526 Oct 23, 2025
bdd3165
Add Fuse test
m09526 Oct 23, 2025
31f1a17
Merge branch 'develop' into 5639-sum-aggregation-in-datafusion-change…
m09526 Oct 23, 2025
4194a19
Uncomment tests
m09526 Oct 23, 2025
c74764a
Lint fix
m09526 Oct 23, 2025
f48f818
Merge branch 'develop' into 5639-sum-aggregation-in-datafusion-change…
patchwork01 Oct 24, 2025
04be2c2
5639 Install cargo audit with --locked flag
patchwork01 Oct 24, 2025
97c5aaf
Merge branch 'develop' into 5639-sum-aggregation-in-datafusion-change…
m09526 Oct 24, 2025
cca92d4
Merge branch 'develop' into 5639-sum-aggregation-in-datafusion-change…
m09526 Oct 27, 2025
ceab705
Changes to address PR comments
m09526 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
2 changes: 1 addition & 1 deletion .github/workflows/rust-audit.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
toolchain: 1.88
- uses: mozilla-actions/[email protected]
- name: Install cargo audit
run: cargo install cargo-audit
run: cargo install --locked cargo-audit
- name: Audit
working-directory: ./rust
run: cargo audit
Original file line number Diff line number Diff line change
Expand Up @@ -97,11 +97,12 @@ void setUp() throws IOException {
instanceProperties.set(DEFAULT_INGEST_PARTITION_FILE_WRITER_TYPE, "direct");
instanceProperties.set(FILE_SYSTEM, "file://");
instanceProperties.set(DATA_BUCKET, createTempDirectory(tempDir, null).toString());
instanceProperties.setEnum(DEFAULT_DATA_ENGINE, DataEngine.DATAFUSION);
instanceProperties.setEnum(DEFAULT_DATA_ENGINE, DataEngine.DATAFUSION_EXPERIMENTAL);
}

@AfterAll
static void afterAll() {
// Closes resources
try (FFI_CONTEXT; ALLOCATOR) {
}
}
Expand Down
Loading
Loading