Skip to content

Commit

Permalink
Update test baselines
Browse files Browse the repository at this point in the history
  • Loading branch information
ranma42 committed Jun 16, 2024
1 parent eb25eff commit 51d0217
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -6378,7 +6378,7 @@ public override async Task GetValueOrDefault_in_filter_non_nullable_column(bool
"""
SELECT [w].[Id], [w].[AmmunitionType], [w].[IsAutomatic], [w].[Name], [w].[OwnerFullName], [w].[SynergyWithId]
FROM [Weapons] AS [w]
WHERE COALESCE([w].[Id], 0) = 0
WHERE [w].[Id] = 0
""");
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8662,7 +8662,7 @@ public override async Task GetValueOrDefault_in_filter_non_nullable_column(bool
"""
SELECT [w].[Id], [w].[AmmunitionType], [w].[IsAutomatic], [w].[Name], [w].[OwnerFullName], [w].[SynergyWithId]
FROM [Weapons] AS [w]
WHERE COALESCE([w].[Id], 0) = 0
WHERE [w].[Id] = 0
""");
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7260,7 +7260,7 @@ public override async Task GetValueOrDefault_in_filter_non_nullable_column(bool
"""
SELECT [w].[Id], [w].[AmmunitionType], [w].[IsAutomatic], [w].[Name], [w].[OwnerFullName], [w].[SynergyWithId]
FROM [Weapons] AS [w]
WHERE COALESCE([w].[Id], 0) = 0
WHERE [w].[Id] = 0
""");
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7311,7 +7311,7 @@ public override async Task GetValueOrDefault_in_filter_non_nullable_column(bool
"""
SELECT [w].[Id], [w].[AmmunitionType], [w].[IsAutomatic], [w].[Name], [w].[OwnerFullName], [w].[PeriodEnd], [w].[PeriodStart], [w].[SynergyWithId]
FROM [Weapons] FOR SYSTEM_TIME AS OF '2010-01-01T00:00:00.0000000' AS [w]
WHERE COALESCE([w].[Id], 0) = 0
WHERE [w].[Id] = 0
""");
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3096,7 +3096,7 @@ public override async Task GetValueOrDefault_in_filter_non_nullable_column(bool
"""
SELECT "w"."Id", "w"."AmmunitionType", "w"."IsAutomatic", "w"."Name", "w"."OwnerFullName", "w"."SynergyWithId"
FROM "Weapons" AS "w"
WHERE COALESCE("w"."Id", 0) = 0
WHERE "w"."Id" = 0
""");
}

Expand Down

0 comments on commit 51d0217

Please sign in to comment.