-
Notifications
You must be signed in to change notification settings - Fork 20
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: add support for Ibis 9.x (#1034)
- Adds support for Ibis 9.x and drops all previous versions. - Adds `test_parity.py` checking execution parity between duckdb (with ibis), duckdb (with substrait) and acero. * feat: support ibis >=9.0 * fix(format): run black on translate.py * fix: revert to TypeAlias conditional import for py39 * fix: update flake.lock * fix: duckdb to_pyarrow doesn't work with arrow nightly * fix: update poetry.lock * chore(deps): remove sqlalchemy and duckdb-engine We no longer require sqlalchemy upstream so we can drop these dependencies that were used for downstream testing here. * chore(ci): bump conventional commits to 8.0.0 * chore(nix): bump flake.lock * chore(parity tests): xfail nix+linux tests that need extensions Linux+Nix have sandboxing that prevents duckdb extensions from downloading. * fix: ignore temp directory cleanup errors on windows * fix: disable duckdb_substrait, close duckdb connection * fix: remove nix sandbox markers * fix: apply suggestions from code review Co-authored-by: Gil Forsyth <[email protected]> * fix: remove Sum translation rule * fix: add correct countDistinct handling --------- Co-authored-by: Gil Forsyth <[email protected]> Co-authored-by: Gil Forsyth <[email protected]>
- Loading branch information
1 parent
190496e
commit 0c4aee8
Showing
37 changed files
with
10,091 additions
and
5,505 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -42,7 +42,7 @@ nix develop '.#release' -c npx --yes \ | |
-p "@semantic-release/exec" \ | ||
-p "@semantic-release/git" \ | ||
-p "@google/[email protected]" \ | ||
-p "conventional-changelog-conventionalcommits@6.1.0" \ | ||
-p "conventional-changelog-conventionalcommits@8.0.0" \ | ||
semantic-release \ | ||
--ci \ | ||
--dry-run \ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -11,5 +11,5 @@ nix develop '.#release' -c npx --yes \ | |
-p "@semantic-release/exec" \ | ||
-p "@semantic-release/git" \ | ||
-p "@google/[email protected]" \ | ||
-p "conventional-changelog-conventionalcommits@6.1.0" \ | ||
-p "conventional-changelog-conventionalcommits@8.0.0" \ | ||
semantic-release --ci |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.