From 8015769ddbec4770dda6f9e383a3903d0e50cde7 Mon Sep 17 00:00:00 2001 From: Azure Pipelines Bot Date: Fri, 13 Dec 2024 07:09:03 +0000 Subject: [PATCH] [Linux / SQL Server 2019] baselines --- ....Linq.ParameterTests.Caching(SqlServer.SA.LinqService).sql | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/SqlServer.SA.LinqService/Tests/Linq/ParameterTests/Tests.Linq.ParameterTests.Caching(SqlServer.SA.LinqService).sql b/SqlServer.SA.LinqService/Tests/Linq/ParameterTests/Tests.Linq.ParameterTests.Caching(SqlServer.SA.LinqService).sql index 9e483037c8d..76251f8c9c4 100644 --- a/SqlServer.SA.LinqService/Tests/Linq/ParameterTests/Tests.Linq.ParameterTests.Caching(SqlServer.SA.LinqService).sql +++ b/SqlServer.SA.LinqService/Tests/Linq/ParameterTests/Tests.Linq.ParameterTests.Caching(SqlServer.SA.LinqService).sql @@ -2,6 +2,8 @@ -- SqlServer.SA SqlServer.2019 DECLARE @ParentID Int -- Int32 SET @ParentID = 1 +DECLARE @ParentID_1 Int -- Int32 +SET @ParentID_1 = 1 SELECT [x].[ParentID], @@ -9,7 +11,7 @@ SELECT FROM [Parent] [x] WHERE - ([x].[ParentID] = @ParentID OR [x].[ParentID] = @ParentID) + ([x].[ParentID] = @ParentID OR [x].[ParentID] = @ParentID_1) BeforeExecute -- SqlServer.SA SqlServer.2019