You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It currently fails with something like table "iii" is missing from FROM. Probably because getExpressionList() doesn't forward aliases. Query log also proves there was no alias generated for the query.
For the above query exactly, the workaround seems to give an alias to the parent query instead and rewrite the query a bit:
Expected behavior
I need to execute a query where filterMany requires using an alias to support a subquery using max(...) function.
Example:
Actual behavior
It currently fails with something like table "iii" is missing from FROM. Probably because
getExpressionList()
doesn't forward aliases. Query log also proves there was no alias generated for the query.For the above query exactly, the workaround seems to give an alias to the parent query instead and rewrite the query a bit:
This basically seems to have the same result, but I'm not sure if it would cover all cases? So opening that issue to hear thoughts.
The text was updated successfully, but these errors were encountered: