Skip to content

Commit 34fedd8

Browse files
Copilotrenemadsen
andcommitted
Fix Update_with_PK_pushdown_and_join_and_multiple_setters - change inner JOIN from Order Details to Orders
Co-authored-by: renemadsen <76994+renemadsen@users.noreply.github.com>
1 parent 4a94c48 commit 34fedd8

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
@@ -1779,7 +1779,7 @@ INNER JOIN (
17791779
ORDER BY `o`.`OrderID`
17801780
LIMIT 18446744073709551610 OFFSET @p
17811781
) AS `o1`
1782-
INNER JOIN `Order Details` AS `o0` ON `o1`.`OrderID` = `o0`.`OrderID`
1782+
INNER JOIN `Orders` 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)