Skip to content

Commit

Permalink
Update baselines
Browse files Browse the repository at this point in the history
  • Loading branch information
ranma42 committed Jul 9, 2024
1 parent 178d2af commit 80a7450
Show file tree
Hide file tree
Showing 9 changed files with 119 additions and 119 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -6830,7 +6830,7 @@ FROM [Gears] AS [g]
LEFT JOIN (
SELECT [w].[Id], [w].[OwnerFullName]
FROM [Weapons] AS [w]
WHERE [w].[IsAutomatic] <> @__isAutomatic_0
WHERE [w].[IsAutomatic] = @__isAutomatic_0 ^ CAST(1 AS bit)
) AS [w0] ON [g].[FullName] = [w0].[OwnerFullName]
""");
}
Expand Down Expand Up @@ -7554,15 +7554,15 @@ public override async Task Logical_operation_with_non_null_parameter_optimizes_n

SELECT [g].[Nickname], [g].[SquadId], [g].[AssignedCityName], [g].[CityOfBirthName], [g].[Discriminator], [g].[FullName], [g].[HasSoulPatch], [g].[LeaderNickname], [g].[LeaderSquadId], [g].[Rank]
FROM [Gears] AS [g]
WHERE [g].[HasSoulPatch] <> @__prm_0
WHERE [g].[HasSoulPatch] = @__prm_0 ^ CAST(1 AS bit)
""",
//
"""
@__prm_0='False'

SELECT [g].[Nickname], [g].[SquadId], [g].[AssignedCityName], [g].[CityOfBirthName], [g].[Discriminator], [g].[FullName], [g].[HasSoulPatch], [g].[LeaderNickname], [g].[LeaderSquadId], [g].[Rank]
FROM [Gears] AS [g]
WHERE [g].[HasSoulPatch] <> @__prm_0
WHERE [g].[HasSoulPatch] = @__prm_0 ^ CAST(1 AS bit)
""");
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1347,10 +1347,10 @@ public override async Task Where_not_bool_member_compared_to_binary_expression(b
"""
SELECT [p].[ProductID], [p].[Discontinued], [p].[ProductName], [p].[SupplierID], [p].[UnitPrice], [p].[UnitsInStock]
FROM [Products] AS [p]
WHERE [p].[Discontinued] <> CASE
WHERE [p].[Discontinued] = CASE
WHEN [p].[ProductID] > 50 THEN CAST(1 AS bit)
ELSE CAST(0 AS bit)
END
END ^ CAST(1 AS bit)
""");
}

Expand Down Expand Up @@ -1381,7 +1381,7 @@ FROM [Products] AS [p]
WHERE CASE
WHEN [p].[ProductID] > 50 THEN CAST(1 AS bit)
ELSE CAST(0 AS bit)
END <> @__prm_0
END = @__prm_0 ^ CAST(1 AS bit)
""");
}

Expand Down
Loading

0 comments on commit 80a7450

Please sign in to comment.