Merged
Conversation
…g in Querydsl Aggregations (#1181) * Introduce TypeWrapper to wrap Expression results into custom types - Implement TypeWrapper<S, T> as a FactoryExpression - Allows converting a source Expression (e.g. BigDecimal) to a domain type (e.g. Money) - Prepares QueryDSL core to support custom aggregation projections without core API changes * Add JPAQueryCustomTypeWrapperTest covering success and failure scenarios - Verify IllegalArgumentException for unsupported custom types without wrapper - Verify sum-and-wrap to Money via TypeWrapper in both direct and DTO projection use cases - Ensure both positive and negative paths are exercised
…`@Converter` to basic types (#1199) * Fix: Early error for .contains() on @converter mapped JPA collections * Test : add test code * Add test cases to improve test coverage * style: revert formatting change based on review feedback for consistency
* fix: correct escape & anchor handling in likeToRegex/regexToLike - treat \% \_ as literals, escape regex metachars, strip outer ^/$ only - add unit tests to guarantee accurate LIKE ↔ regex round-trips * Fix code format Signed-off-by: Marvin Froeder <[email protected]> --------- Signed-off-by: Marvin Froeder <[email protected]> Co-authored-by: Marvin Froeder <[email protected]>
This file contains hidden or 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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This PR syncs changes from master into querydsl-7.0