Skip to content

Tags: spaceandtimefdn/sxt-proof-of-sql

Tags

v0.126.1

Toggle v0.126.1's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
fix(sol): allow zero column group by (#1058)

Please be sure to look over the pull request guidelines here:
https://github.com/spaceandtimelabs/sxt-proof-of-sql/blob/main/CONTRIBUTING.md#submit-pr.

# Please go through the following checklist
- [ ] The PR title and commit messages adhere to guidelines here:
https://github.com/spaceandtimelabs/sxt-proof-of-sql/blob/main/CONTRIBUTING.md.
In particular `!` is used if and only if at least one breaking change
has been introduced.
- [ ] I have run the ci check script with `source
scripts/run_ci_checks.sh`.
- [ ] I have run the clean commit check script with `source
scripts/check_commits.sh`, and the commit history is certified to follow
clean commit guidelines as described here:
https://github.com/spaceandtimelabs/sxt-proof-of-sql/blob/main/COMMIT_GUIDELINES.md
- [ ] The latest changes from `main` have been incorporated to this PR
by simple rebase if possible, if not, then conflicts are resolved
appropriately.

# Rationale for this change

We want to support 0 column group bys for on chain queries.

# What changes are included in this PR?

Allowing 0 column group bys in the solidity

# Are these changes tested?
Yes

v0.126.0

Toggle v0.126.0's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
test: replace `legacy_filter` with `filter` in tests (#1054)

# Rationale for this change
Eliminate `legacy_filter` in almost all places not explicitly about it

v0.125.2

Toggle v0.125.2's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
refactor(sol): move `compute_filter_fold` to `FilterExec.presl` (#1056)

# Rationale for this change
Reduce dependency on `LegacyFilterExec.presl` to facilitate its eventual
removal.

v0.125.1

Toggle v0.125.1's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
fix: remove "generalized" from the codebase (#1053)

# Rationale for this change
Remove remaining "generalized" words from the codebase

v0.125.0

Toggle v0.125.0's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
feat!: switch to `GeneralizedFilterExec` in the planner (#1048)

# Rationale for this change
This PR should achieve the cutover to `GeneralizedFilterExec` and have
end to end tests working.

---------

Co-authored-by: Claude <[email protected]>

v0.124.5

Toggle v0.124.5's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
test: replace `filter()` with `generalized_filter()` in tests (#1050)

# Rationale for this change
We need to rapidly do away with the legacy `FilterExec` and this is the
next step.

v0.124.4

Toggle v0.124.4's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
feat: add `EVMGeneralizedFilterExec` (#1049)

Depends on #1030.
# Rationale for this change
Add `EVMGeneralizedFilterExec` in preparation for solidity PRs.

---------

Co-authored-by: Claude <[email protected]>

v0.124.3

Toggle v0.124.3's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
feat(sol): `SortMergeJoinExec` (#979)

Please be sure to look over the pull request guidelines here:
https://github.com/spaceandtimelabs/sxt-proof-of-sql/blob/main/CONTRIBUTING.md#submit-pr.

# Please go through the following checklist
- [ ] The PR title and commit messages adhere to guidelines here:
https://github.com/spaceandtimelabs/sxt-proof-of-sql/blob/main/CONTRIBUTING.md.
In particular `!` is used if and only if at least one breaking change
has been introduced.
- [ ] I have run the ci check script with `source
scripts/run_ci_checks.sh`.
- [ ] I have run the clean commit check script with `source
scripts/check_commits.sh`, and the commit history is certified to follow
clean commit guidelines as described here:
https://github.com/spaceandtimelabs/sxt-proof-of-sql/blob/main/COMMIT_GUIDELINES.md
- [ ] The latest changes from `main` have been incorporated to this PR
by simple rebase if possible, if not, then conflicts are resolved
appropriately.

# Rationale for this change

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

 Example:
 Add `NestedLoopJoinExec`.
 Closes #345.

Since we added `HashJoinExec` in #323 it has been possible to do
provable inner joins. However performance is not satisfactory in some
cases. Hence we need to fix the problem by implement
`NestedLoopJoinExec` and speed up the code
 for `HashJoinExec`.
-->

# What changes are included in this PR?

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

Example:
- Add `NestedLoopJoinExec`.
- Speed up `HashJoinExec`.
- Route joins to `NestedLoopJoinExec` if the outer input is sufficiently
small.
-->

# 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)?

Example:
Yes.
-->

v0.124.2

Toggle v0.124.2's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
feat: make `BigDecimalExt` public (#1046)

# Rationale for this change
Make `BigDecimalExt` public since the SDK needs to use it.

v0.124.1

Toggle v0.124.1's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
fix: address forge fmt issues (#1045)