Skip to content

Commit e2a01fa

Browse files
authored
Fix SQL baseline for Parameter_collection_Concat_column_collection test (#3819)
1 parent 82f06b2 commit e2a01fa

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

test/EFCore.PG.FunctionalTests/Query/PrimitiveCollectionsQueryNpgsqlTest.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1432,11 +1432,11 @@ public override async Task Parameter_collection_Concat_column_collection(bool as
14321432

14331433
AssertSql(
14341434
"""
1435-
@__ints_0={ '11', '111' } (DbType = Object)
1435+
@__p_0={ '11', '111' } (DbType = Object)
14361436
14371437
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."String", p."Strings"
14381438
FROM "PrimitiveCollectionsEntity" AS p
1439-
WHERE cardinality(@__ints_0 || p."Ints") = 2
1439+
WHERE cardinality(@__p_0 || p."Ints") = 2
14401440
""");
14411441
}
14421442

0 commit comments

Comments
 (0)