Skip to content

Commit 19e430f

Browse files
Copilotrenemadsen
andcommitted
Fix Contains_with_MemoryExtensions baseline, Take_Skip parameter naming, Take_Skip_Distinct_Caching param, and Include_duplicate_collection_result_operator param
Co-authored-by: renemadsen <76994+renemadsen@users.noreply.github.com>
1 parent 262a43d commit 19e430f

3 files changed

Lines changed: 4 additions & 4 deletions

File tree

test/EFCore.MySql.FunctionalTests/Query/NorthwindEFPropertyIncludeQueryMySqlTest.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1618,7 +1618,7 @@ ORDER BY `c0`.`CustomerID`
16181618
LIMIT 2 OFFSET 2
16191619
) AS `c2`
16201620
ORDER BY `c1`.`CustomerID`, `c2`.`CustomerID`
1621-
LIMIT @p0
1621+
LIMIT @p2
16221622
) AS `s`
16231623
LEFT JOIN `Orders` AS `o0` ON `s`.`CustomerID` = `o0`.`CustomerID`
16241624
LEFT JOIN `Orders` AS `o1` ON `s`.`CustomerID0` = `o1`.`CustomerID`

test/EFCore.MySql.FunctionalTests/Query/NorthwindMiscellaneousQueryMySqlTest.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ ORDER BY `c`.`ContactName`
4848
LIMIT @p
4949
) AS `c0`
5050
ORDER BY `c0`.`ContactName`
51-
LIMIT 18446744073709551610 OFFSET @p0
51+
LIMIT 18446744073709551610 OFFSET @p1
5252
""");
5353
}
5454

@@ -1364,7 +1364,7 @@ ORDER BY `c`.`ContactName`
13641364
LIMIT @p
13651365
) AS `c0`
13661366
ORDER BY `c0`.`ContactName`
1367-
LIMIT 18446744073709551610 OFFSET @p0
1367+
LIMIT 18446744073709551610 OFFSET @p1
13681368
) AS `c1`
13691369
""",
13701370
//

test/EFCore.MySql.FunctionalTests/Query/PrimitiveCollectionsQueryMySqlTest.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2648,7 +2648,7 @@ public override async Task Contains_with_MemoryExtensions_with_null_comparer()
26482648
"""
26492649
SELECT `p`.`Id`, `p`.`Bool`, `p`.`Bools`, `p`.`DateTime`, `p`.`DateTimes`, `p`.`Enum`, `p`.`Enums`, `p`.`Int`, `p`.`Ints`, `p`.`NullableInt`, `p`.`NullableInts`, `p`.`NullableString`, `p`.`NullableStrings`, `p`.`NullableWrappedId`, `p`.`NullableWrappedIdWithNullableComparer`, `p`.`String`, `p`.`Strings`, `p`.`WrappedId`
26502650
FROM `PrimitiveCollectionsEntity` AS `p`
2651-
WHERE `p`.`String` IN ('10', '999')
2651+
WHERE `p`.`Int` IN (10, 999)
26522652
""");
26532653
}
26542654

0 commit comments

Comments
 (0)