Skip to content

Commit 9575fbd

Browse files
Copilotrenemadsen
andcommitted
Fix Update_with_PK_pushdown_and_join_and_multiple_setters - update table alias from o to o1
Co-authored-by: renemadsen <76994+renemadsen@users.noreply.github.com>
1 parent 626f4bc commit 9575fbd

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1772,14 +1772,14 @@ 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 `o1`.`OrderID`, `o1`.`ProductID`
1775+
SELECT `o0`.`OrderID`, `o0`.`ProductID`
17761776
FROM (
17771777
SELECT `o`.`OrderID`, `o`.`ProductID`
17781778
FROM `Order Details` AS `o`
17791779
ORDER BY `o`.`OrderID`
17801780
LIMIT 18446744073709551610 OFFSET @p
1781-
) AS `o`
1782-
INNER JOIN `Order Details` AS `o1` ON `o`.`OrderID` = `o1`.`OrderID`
1781+
) AS `o1`
1782+
INNER JOIN `Order Details` AS `o0` ON `o1`.`OrderID` = `o0`.`OrderID`
17831783
) AS `o0` ON `o2`.`OrderID` = `o0`.`OrderID` AND `o2`.`ProductID` = `o0`.`ProductID`
17841784
SET `o2`.`Quantity` = CAST(@p2 AS signed),
17851785
`o2`.`UnitPrice` = `o2`.`UnitPrice`

0 commit comments

Comments
 (0)