We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Just produced a completely messed up query out of nowhere (query.txt). Note the SELECT CASE WHEN = ugdp.id.subject.id AND COUNT (*).
SELECT CASE WHEN = ugdp.id.subject.id AND COUNT (*)
The criteria builder code for this part looks like this:
subqueryInitiator.from(UserGroupDataPermission.class, "ugdp") .select("CASE WHEN COUNT(*) > 0 THEN true ELSE false END") .innerJoinOn(UserGroupAssigned.class, "uga") .on("uga.user.id").eqExpression(userIdExpression) .on("uga.userGroup.id").eqExpression("ugdp.id.subject.id") .end() .where("ugdp.id.entity").eqExpression(entityExpression) .where("ugdp.id.entityId").eqExpression(entityIdExpression) .where("ugdp.id.actionName").eq(action) .end();
This has a bad taste of concurrency/caching issue since it cannot be reproduced.
Version: 1.2.0-Alpha3-curecomp-10
The text was updated successfully, but these errors were encountered:
Blazebit#455 - fixed expression cloning
bd85111
b891a50
87eac2c
#455 - fixed expression cloning
f66e881
beikov
No branches or pull requests
Just produced a completely messed up query out of nowhere (query.txt).
Note the
SELECT CASE WHEN = ugdp.id.subject.id AND COUNT (*)
.The criteria builder code for this part looks like this:
This has a bad taste of concurrency/caching issue since it cannot be reproduced.
Version: 1.2.0-Alpha3-curecomp-10
The text was updated successfully, but these errors were encountered: