Skip to content

Commit 626f4bc

Browse files
Copilotrenemadsen
andcommitted
Fix Update_with_PK_pushdown_and_join_and_multiple_setters - use LIMIT constant with OFFSET parameter
Co-authored-by: renemadsen <76994+renemadsen@users.noreply.github.com>
1 parent b365ff9 commit 626f4bc

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
@@ -1777,7 +1777,7 @@ INNER JOIN (
17771777
SELECT `o`.`OrderID`, `o`.`ProductID`
17781778
FROM `Order Details` AS `o`
17791779
ORDER BY `o`.`OrderID`
1780-
LIMIT @p
1780+
LIMIT 18446744073709551610 OFFSET @p
17811781
) AS `o`
17821782
INNER JOIN `Order Details` AS `o1` ON `o`.`OrderID` = `o1`.`OrderID`
17831783
) AS `o0` ON `o2`.`OrderID` = `o0`.`OrderID` AND `o2`.`ProductID` = `o0`.`ProductID`

0 commit comments

Comments
 (0)