Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

concat() is a variadic function, but declared binary by CriteriaBuilder #408

Closed
gavinking opened this issue May 18, 2023 · 0 comments · Fixed by #412
Closed

concat() is a variadic function, but declared binary by CriteriaBuilder #408

gavinking opened this issue May 18, 2023 · 0 comments · Fixed by #412

Comments

@gavinking
Copy link
Contributor

gavinking commented May 18, 2023

In CriteriaBuilder we have:

Expression<String> concat(Expression<String> x, Expression<String> y);
Expression<String> concat(Expression<String> x, String y);
Expression<String> concat(String x, Expression<String> y);

we should add:

Expression<String> concat(Expression<String>... strings);
gavinking added a commit to gavinking/persistence that referenced this issue May 19, 2023
gavinking added a commit to gavinking/persistence that referenced this issue May 19, 2023
gavinking added a commit to gavinking/persistence that referenced this issue May 19, 2023
@lukasj lukasj linked a pull request Aug 4, 2023 that will close this issue
gavinking added a commit to gavinking/persistence that referenced this issue Aug 7, 2023
gavinking added a commit to gavinking/persistence that referenced this issue Aug 7, 2023
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging a pull request may close this issue.

1 participant