Fix Assert.Empty() failures for LATERAL join tests on MySQL 8.0.14+ #219
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.
Two correlated collection tests were failing on MySQL 8.0.40 with
Assert.Empty() Failure: Collection was not emptybecause SQL was being generated when tests expected none. MariaDB tests were skipped (OuterApply unsupported).Root Cause
MySQL 8.0.14+ supports OUTER APPLY via LATERAL joins. The query translator generates valid SQL:
MariaDB never supports OuterApply (all versions), causing translation failures and test skips.
Changes
Added version-conditional SQL assertions using
AppConfig.ServerVersion.Supports.OuterApplyUpdated tests:
Correlated_collection_with_distinct_without_default_identifiers_projecting_columnsCorrelated_collection_with_distinct_without_default_identifiers_projecting_columns_with_navigationOriginal prompt
💬 We'd love your input! Share your thoughts on Copilot coding agent in our 2 minute survey.