Skip to content

Commit 8ccb19a

Browse files
Copilotrenemadsen
andcommitted
Fix Update_with_PK_pushdown_and_join_and_multiple_setters - add ProductID to inner SELECT
Co-authored-by: renemadsen <76994+renemadsen@users.noreply.github.com>
1 parent b8dfb67 commit 8ccb19a

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
@@ -1774,7 +1774,7 @@ public override async Task Update_with_PK_pushdown_and_join_and_multiple_setters
17741774
INNER JOIN (
17751775
SELECT `o1`.`OrderID`, `o1`.`ProductID`
17761776
FROM (
1777-
SELECT `o`.`OrderID`
1777+
SELECT `o`.`OrderID`, `o`.`ProductID`
17781778
FROM `Orders` AS `o`
17791779
WHERE `o`.`OrderID` < @p
17801780
) AS `o`

0 commit comments

Comments
 (0)