| I don't see how this regressed considering the tests we specifically added to test it still pass. So if you are seeing a failure here you are likely seeing a new condition. Please open a new issue and attach a test reproducing the problem. However... Possibly you are using count+distinct? Which was specifically not covered here because really if you say select count(distinct o) from Order o and Order has a composite key and your Dialect says the database does not support count-distinct-tuples there is really no transformation we can apply. Our options there are either:
- Ignore the Dialect and render the tuples, or
- Throw an exception ourselves as soon as we recognize this condition
If this is what you are seeing feel free to open a new issue requesting that we just go ahead and throw the exception ourselves. |