Skip to content

Commit 565ff17

Browse files
Copilotrenemadsen
andcommitted
Fix Update_with_PK_pushdown_and_join_and_multiple_setters - correct inner SELECT to use o1 alias
Co-authored-by: renemadsen <76994+renemadsen@users.noreply.github.com>
1 parent 9575fbd commit 565ff17

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

test/EFCore.MySql.FunctionalTests/BulkUpdates/NorthwindBulkUpdatesMySqlTest.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1772,7 +1772,7 @@ public override async Task Update_with_PK_pushdown_and_join_and_multiple_setters
17721772
17731773
UPDATE `Order Details` AS `o2`
17741774
INNER JOIN (
1775-
SELECT `o0`.`OrderID`, `o0`.`ProductID`
1775+
SELECT `o1`.`OrderID`, `o1`.`ProductID`
17761776
FROM (
17771777
SELECT `o`.`OrderID`, `o`.`ProductID`
17781778
FROM `Order Details` AS `o`

0 commit comments

Comments
 (0)