From 1efcc6fd089ff4859c5a2cffd3984ebc94cbec2e Mon Sep 17 00:00:00 2001 From: Azure Pipelines Bot Date: Sun, 11 May 2025 09:40:41 +0000 Subject: [PATCH 1/2] [Windows / SQLite (both providers)] baselines --- ...SetWithTernaryOperatorIssue(SQLite.MS.LinqService).sql | 2 +- ...dateWithColumnFilter1(SQLite.MS.LinqService,False).sql | 2 +- ...pdateWithColumnFilter1(SQLite.MS.LinqService,True).sql | 2 +- ...TestUpdateWithColumnFilter2(SQLite.MS.LinqService).sql | 8 ++++---- ....UpdateTests.UpdateComplex1(SQLite.MS.LinqService).sql | 6 +++--- ...teTests.UpdateComplex1Async(SQLite.MS.LinqService).sql | 6 +++--- ....UpdateTests.UpdateComplex2(SQLite.MS.LinqService).sql | 2 +- ...UpdateTests.SetWithTernaryOperatorIssue(SQLite.MS).sql | 2 +- ...Tests.TestUpdateWithColumnFilter1(SQLite.MS,False).sql | 2 +- ...eTests.TestUpdateWithColumnFilter1(SQLite.MS,True).sql | 2 +- ...UpdateTests.TestUpdateWithColumnFilter2(SQLite.MS).sql | 8 ++++---- ...ests.xUpdate.UpdateTests.UpdateComplex1(SQLite.MS).sql | 6 +++--- ...xUpdate.UpdateTests.UpdateComplex1Async(SQLite.MS).sql | 6 +++--- ...ests.xUpdate.UpdateTests.UpdateComplex2(SQLite.MS).sql | 2 +- 14 files changed, 28 insertions(+), 28 deletions(-) diff --git a/SQLite.MS.LinqService/Tests/xUpdate/UpdateTests/Tests.xUpdate.UpdateTests.SetWithTernaryOperatorIssue(SQLite.MS.LinqService).sql b/SQLite.MS.LinqService/Tests/xUpdate/UpdateTests/Tests.xUpdate.UpdateTests.SetWithTernaryOperatorIssue(SQLite.MS.LinqService).sql index 424c2af6ac2e..7103a6876ba0 100644 --- a/SQLite.MS.LinqService/Tests/xUpdate/UpdateTests/Tests.xUpdate.UpdateTests.SetWithTernaryOperatorIssue(SQLite.MS.LinqService).sql +++ b/SQLite.MS.LinqService/Tests/xUpdate/UpdateTests/Tests.xUpdate.UpdateTests.SetWithTernaryOperatorIssue(SQLite.MS.LinqService).sql @@ -49,7 +49,7 @@ WHERE BeforeExecute -- SQLite.MS SQLite DECLARE @id -- Int32 -SET @id = 11 +SET @id = 5 SELECT [t1].[PersonID], diff --git a/SQLite.MS.LinqService/Tests/xUpdate/UpdateTests/Tests.xUpdate.UpdateTests.TestUpdateWithColumnFilter1(SQLite.MS.LinqService,False).sql b/SQLite.MS.LinqService/Tests/xUpdate/UpdateTests/Tests.xUpdate.UpdateTests.TestUpdateWithColumnFilter1(SQLite.MS.LinqService,False).sql index 9979b051b82a..43a4445403df 100644 --- a/SQLite.MS.LinqService/Tests/xUpdate/UpdateTests/Tests.xUpdate.UpdateTests.TestUpdateWithColumnFilter1(SQLite.MS.LinqService,False).sql +++ b/SQLite.MS.LinqService/Tests/xUpdate/UpdateTests/Tests.xUpdate.UpdateTests.TestUpdateWithColumnFilter1(SQLite.MS.LinqService,False).sql @@ -55,7 +55,7 @@ SET @LastName = 'whatever' DECLARE @Gender Char(1) -- AnsiStringFixedLength SET @Gender = 'M' DECLARE @ID -- Int32 -SET @ID = 15 +SET @ID = 5 UPDATE [Person] diff --git a/SQLite.MS.LinqService/Tests/xUpdate/UpdateTests/Tests.xUpdate.UpdateTests.TestUpdateWithColumnFilter1(SQLite.MS.LinqService,True).sql b/SQLite.MS.LinqService/Tests/xUpdate/UpdateTests/Tests.xUpdate.UpdateTests.TestUpdateWithColumnFilter1(SQLite.MS.LinqService,True).sql index 60363209de17..f9c264e7dcaa 100644 --- a/SQLite.MS.LinqService/Tests/xUpdate/UpdateTests/Tests.xUpdate.UpdateTests.TestUpdateWithColumnFilter1(SQLite.MS.LinqService,True).sql +++ b/SQLite.MS.LinqService/Tests/xUpdate/UpdateTests/Tests.xUpdate.UpdateTests.TestUpdateWithColumnFilter1(SQLite.MS.LinqService,True).sql @@ -57,7 +57,7 @@ SET @MiddleName = 'updated name' DECLARE @Gender Char(1) -- AnsiStringFixedLength SET @Gender = 'M' DECLARE @ID -- Int32 -SET @ID = 14 +SET @ID = 5 UPDATE [Person] diff --git a/SQLite.MS.LinqService/Tests/xUpdate/UpdateTests/Tests.xUpdate.UpdateTests.TestUpdateWithColumnFilter2(SQLite.MS.LinqService).sql b/SQLite.MS.LinqService/Tests/xUpdate/UpdateTests/Tests.xUpdate.UpdateTests.TestUpdateWithColumnFilter2(SQLite.MS.LinqService).sql index 2d4cfe711688..cb5ccc99e4b1 100644 --- a/SQLite.MS.LinqService/Tests/xUpdate/UpdateTests/Tests.xUpdate.UpdateTests.TestUpdateWithColumnFilter2(SQLite.MS.LinqService).sql +++ b/SQLite.MS.LinqService/Tests/xUpdate/UpdateTests/Tests.xUpdate.UpdateTests.TestUpdateWithColumnFilter2(SQLite.MS.LinqService).sql @@ -51,7 +51,7 @@ BeforeExecute DECLARE @FirstName NVarChar(25) -- String SET @FirstName = 'UpdateColumnFilterUpdated' DECLARE @ID -- Int32 -SET @ID = 17 +SET @ID = 5 UPDATE [Person] @@ -63,7 +63,7 @@ WHERE BeforeExecute -- SQLite.MS SQLite DECLARE @ID -- Int32 -SET @ID = 17 +SET @ID = 5 SELECT [x].[FirstName], @@ -88,7 +88,7 @@ SET @MiddleName = NULL DECLARE @Gender Char(1) -- AnsiStringFixedLength SET @Gender = 'M' DECLARE @ID -- Int32 -SET @ID = 17 +SET @ID = 5 UPDATE [Person] @@ -103,7 +103,7 @@ WHERE BeforeExecute -- SQLite.MS SQLite DECLARE @ID -- Int32 -SET @ID = 17 +SET @ID = 5 SELECT [t1].[FirstName], diff --git a/SQLite.MS.LinqService/Tests/xUpdate/UpdateTests/Tests.xUpdate.UpdateTests.UpdateComplex1(SQLite.MS.LinqService).sql b/SQLite.MS.LinqService/Tests/xUpdate/UpdateTests/Tests.xUpdate.UpdateTests.UpdateComplex1(SQLite.MS.LinqService).sql index c34aec73a551..bbb3b28ba06a 100644 --- a/SQLite.MS.LinqService/Tests/xUpdate/UpdateTests/Tests.xUpdate.UpdateTests.UpdateComplex1(SQLite.MS.LinqService).sql +++ b/SQLite.MS.LinqService/Tests/xUpdate/UpdateTests/Tests.xUpdate.UpdateTests.UpdateComplex1(SQLite.MS.LinqService).sql @@ -37,7 +37,7 @@ SELECT last_insert_rowid() BeforeExecute -- SQLite.MS SQLite DECLARE @id -- Int32 -SET @id = 21 +SET @id = 5 SELECT [t1].[PersonID], @@ -62,7 +62,7 @@ SET @Name_MiddleName = NULL DECLARE @Name_LastName NVarChar(13) -- String SET @Name_LastName = 'UpdateComplex' DECLARE @ID -- Int32 -SET @ID = 21 +SET @ID = 5 UPDATE [Person] @@ -77,7 +77,7 @@ WHERE BeforeExecute -- SQLite.MS SQLite DECLARE @id -- Int32 -SET @id = 21 +SET @id = 5 SELECT [t1].[PersonID], diff --git a/SQLite.MS.LinqService/Tests/xUpdate/UpdateTests/Tests.xUpdate.UpdateTests.UpdateComplex1Async(SQLite.MS.LinqService).sql b/SQLite.MS.LinqService/Tests/xUpdate/UpdateTests/Tests.xUpdate.UpdateTests.UpdateComplex1Async(SQLite.MS.LinqService).sql index 4dfd4de9080c..1d4d7e48a60c 100644 --- a/SQLite.MS.LinqService/Tests/xUpdate/UpdateTests/Tests.xUpdate.UpdateTests.UpdateComplex1Async(SQLite.MS.LinqService).sql +++ b/SQLite.MS.LinqService/Tests/xUpdate/UpdateTests/Tests.xUpdate.UpdateTests.UpdateComplex1Async(SQLite.MS.LinqService).sql @@ -37,7 +37,7 @@ SELECT last_insert_rowid() BeforeExecute -- SQLite.MS SQLite (asynchronously) DECLARE @id -- Int32 -SET @id = 23 +SET @id = 5 SELECT [t1].[PersonID], @@ -62,7 +62,7 @@ SET @Name_MiddleName = NULL DECLARE @Name_LastName NVarChar(13) -- String SET @Name_LastName = 'UpdateComplex' DECLARE @ID -- Int32 -SET @ID = 23 +SET @ID = 5 UPDATE [Person] @@ -77,7 +77,7 @@ WHERE BeforeExecute -- SQLite.MS SQLite (asynchronously) DECLARE @id -- Int32 -SET @id = 23 +SET @id = 5 SELECT [t1].[PersonID], diff --git a/SQLite.MS.LinqService/Tests/xUpdate/UpdateTests/Tests.xUpdate.UpdateTests.UpdateComplex2(SQLite.MS.LinqService).sql b/SQLite.MS.LinqService/Tests/xUpdate/UpdateTests/Tests.xUpdate.UpdateTests.UpdateComplex2(SQLite.MS.LinqService).sql index 49be3a4e6e85..8b0dd258abba 100644 --- a/SQLite.MS.LinqService/Tests/xUpdate/UpdateTests/Tests.xUpdate.UpdateTests.UpdateComplex2(SQLite.MS.LinqService).sql +++ b/SQLite.MS.LinqService/Tests/xUpdate/UpdateTests/Tests.xUpdate.UpdateTests.UpdateComplex2(SQLite.MS.LinqService).sql @@ -47,7 +47,7 @@ WHERE BeforeExecute -- SQLite.MS SQLite DECLARE @id -- Int32 -SET @id = 25 +SET @id = 5 SELECT [t1].[PersonID], diff --git a/SQLite.MS/Tests/xUpdate/UpdateTests/Tests.xUpdate.UpdateTests.SetWithTernaryOperatorIssue(SQLite.MS).sql b/SQLite.MS/Tests/xUpdate/UpdateTests/Tests.xUpdate.UpdateTests.SetWithTernaryOperatorIssue(SQLite.MS).sql index 66ff9450fb09..7103a6876ba0 100644 --- a/SQLite.MS/Tests/xUpdate/UpdateTests/Tests.xUpdate.UpdateTests.SetWithTernaryOperatorIssue(SQLite.MS).sql +++ b/SQLite.MS/Tests/xUpdate/UpdateTests/Tests.xUpdate.UpdateTests.SetWithTernaryOperatorIssue(SQLite.MS).sql @@ -49,7 +49,7 @@ WHERE BeforeExecute -- SQLite.MS SQLite DECLARE @id -- Int32 -SET @id = 10 +SET @id = 5 SELECT [t1].[PersonID], diff --git a/SQLite.MS/Tests/xUpdate/UpdateTests/Tests.xUpdate.UpdateTests.TestUpdateWithColumnFilter1(SQLite.MS,False).sql b/SQLite.MS/Tests/xUpdate/UpdateTests/Tests.xUpdate.UpdateTests.TestUpdateWithColumnFilter1(SQLite.MS,False).sql index b7ab94e73ba4..43a4445403df 100644 --- a/SQLite.MS/Tests/xUpdate/UpdateTests/Tests.xUpdate.UpdateTests.TestUpdateWithColumnFilter1(SQLite.MS,False).sql +++ b/SQLite.MS/Tests/xUpdate/UpdateTests/Tests.xUpdate.UpdateTests.TestUpdateWithColumnFilter1(SQLite.MS,False).sql @@ -55,7 +55,7 @@ SET @LastName = 'whatever' DECLARE @Gender Char(1) -- AnsiStringFixedLength SET @Gender = 'M' DECLARE @ID -- Int32 -SET @ID = 13 +SET @ID = 5 UPDATE [Person] diff --git a/SQLite.MS/Tests/xUpdate/UpdateTests/Tests.xUpdate.UpdateTests.TestUpdateWithColumnFilter1(SQLite.MS,True).sql b/SQLite.MS/Tests/xUpdate/UpdateTests/Tests.xUpdate.UpdateTests.TestUpdateWithColumnFilter1(SQLite.MS,True).sql index 6558bc954306..f9c264e7dcaa 100644 --- a/SQLite.MS/Tests/xUpdate/UpdateTests/Tests.xUpdate.UpdateTests.TestUpdateWithColumnFilter1(SQLite.MS,True).sql +++ b/SQLite.MS/Tests/xUpdate/UpdateTests/Tests.xUpdate.UpdateTests.TestUpdateWithColumnFilter1(SQLite.MS,True).sql @@ -57,7 +57,7 @@ SET @MiddleName = 'updated name' DECLARE @Gender Char(1) -- AnsiStringFixedLength SET @Gender = 'M' DECLARE @ID -- Int32 -SET @ID = 12 +SET @ID = 5 UPDATE [Person] diff --git a/SQLite.MS/Tests/xUpdate/UpdateTests/Tests.xUpdate.UpdateTests.TestUpdateWithColumnFilter2(SQLite.MS).sql b/SQLite.MS/Tests/xUpdate/UpdateTests/Tests.xUpdate.UpdateTests.TestUpdateWithColumnFilter2(SQLite.MS).sql index 8f9886cabc25..cb5ccc99e4b1 100644 --- a/SQLite.MS/Tests/xUpdate/UpdateTests/Tests.xUpdate.UpdateTests.TestUpdateWithColumnFilter2(SQLite.MS).sql +++ b/SQLite.MS/Tests/xUpdate/UpdateTests/Tests.xUpdate.UpdateTests.TestUpdateWithColumnFilter2(SQLite.MS).sql @@ -51,7 +51,7 @@ BeforeExecute DECLARE @FirstName NVarChar(25) -- String SET @FirstName = 'UpdateColumnFilterUpdated' DECLARE @ID -- Int32 -SET @ID = 16 +SET @ID = 5 UPDATE [Person] @@ -63,7 +63,7 @@ WHERE BeforeExecute -- SQLite.MS SQLite DECLARE @ID -- Int32 -SET @ID = 16 +SET @ID = 5 SELECT [x].[FirstName], @@ -88,7 +88,7 @@ SET @MiddleName = NULL DECLARE @Gender Char(1) -- AnsiStringFixedLength SET @Gender = 'M' DECLARE @ID -- Int32 -SET @ID = 16 +SET @ID = 5 UPDATE [Person] @@ -103,7 +103,7 @@ WHERE BeforeExecute -- SQLite.MS SQLite DECLARE @ID -- Int32 -SET @ID = 16 +SET @ID = 5 SELECT [t1].[FirstName], diff --git a/SQLite.MS/Tests/xUpdate/UpdateTests/Tests.xUpdate.UpdateTests.UpdateComplex1(SQLite.MS).sql b/SQLite.MS/Tests/xUpdate/UpdateTests/Tests.xUpdate.UpdateTests.UpdateComplex1(SQLite.MS).sql index f70493d73874..bbb3b28ba06a 100644 --- a/SQLite.MS/Tests/xUpdate/UpdateTests/Tests.xUpdate.UpdateTests.UpdateComplex1(SQLite.MS).sql +++ b/SQLite.MS/Tests/xUpdate/UpdateTests/Tests.xUpdate.UpdateTests.UpdateComplex1(SQLite.MS).sql @@ -37,7 +37,7 @@ SELECT last_insert_rowid() BeforeExecute -- SQLite.MS SQLite DECLARE @id -- Int32 -SET @id = 20 +SET @id = 5 SELECT [t1].[PersonID], @@ -62,7 +62,7 @@ SET @Name_MiddleName = NULL DECLARE @Name_LastName NVarChar(13) -- String SET @Name_LastName = 'UpdateComplex' DECLARE @ID -- Int32 -SET @ID = 20 +SET @ID = 5 UPDATE [Person] @@ -77,7 +77,7 @@ WHERE BeforeExecute -- SQLite.MS SQLite DECLARE @id -- Int32 -SET @id = 20 +SET @id = 5 SELECT [t1].[PersonID], diff --git a/SQLite.MS/Tests/xUpdate/UpdateTests/Tests.xUpdate.UpdateTests.UpdateComplex1Async(SQLite.MS).sql b/SQLite.MS/Tests/xUpdate/UpdateTests/Tests.xUpdate.UpdateTests.UpdateComplex1Async(SQLite.MS).sql index a8e75bbf1ef7..1d4d7e48a60c 100644 --- a/SQLite.MS/Tests/xUpdate/UpdateTests/Tests.xUpdate.UpdateTests.UpdateComplex1Async(SQLite.MS).sql +++ b/SQLite.MS/Tests/xUpdate/UpdateTests/Tests.xUpdate.UpdateTests.UpdateComplex1Async(SQLite.MS).sql @@ -37,7 +37,7 @@ SELECT last_insert_rowid() BeforeExecute -- SQLite.MS SQLite (asynchronously) DECLARE @id -- Int32 -SET @id = 22 +SET @id = 5 SELECT [t1].[PersonID], @@ -62,7 +62,7 @@ SET @Name_MiddleName = NULL DECLARE @Name_LastName NVarChar(13) -- String SET @Name_LastName = 'UpdateComplex' DECLARE @ID -- Int32 -SET @ID = 22 +SET @ID = 5 UPDATE [Person] @@ -77,7 +77,7 @@ WHERE BeforeExecute -- SQLite.MS SQLite (asynchronously) DECLARE @id -- Int32 -SET @id = 22 +SET @id = 5 SELECT [t1].[PersonID], diff --git a/SQLite.MS/Tests/xUpdate/UpdateTests/Tests.xUpdate.UpdateTests.UpdateComplex2(SQLite.MS).sql b/SQLite.MS/Tests/xUpdate/UpdateTests/Tests.xUpdate.UpdateTests.UpdateComplex2(SQLite.MS).sql index ebc6176810dc..8b0dd258abba 100644 --- a/SQLite.MS/Tests/xUpdate/UpdateTests/Tests.xUpdate.UpdateTests.UpdateComplex2(SQLite.MS).sql +++ b/SQLite.MS/Tests/xUpdate/UpdateTests/Tests.xUpdate.UpdateTests.UpdateComplex2(SQLite.MS).sql @@ -47,7 +47,7 @@ WHERE BeforeExecute -- SQLite.MS SQLite DECLARE @id -- Int32 -SET @id = 24 +SET @id = 5 SELECT [t1].[PersonID], From 00831aafa5fa0aaad12d753fc8c8db7bf0a23080 Mon Sep 17 00:00:00 2001 From: Azure Pipelines Bot Date: Sun, 11 May 2025 10:32:51 +0000 Subject: [PATCH 2/2] [Linux / SQLite (both providers)] baselines --- ...SetWithTernaryOperatorIssue(SQLite.MS.LinqService).sql | 2 +- ...dateWithColumnFilter1(SQLite.MS.LinqService,False).sql | 2 +- ...pdateWithColumnFilter1(SQLite.MS.LinqService,True).sql | 2 +- ...TestUpdateWithColumnFilter2(SQLite.MS.LinqService).sql | 8 ++++---- ....UpdateTests.UpdateComplex1(SQLite.MS.LinqService).sql | 6 +++--- ...teTests.UpdateComplex1Async(SQLite.MS.LinqService).sql | 6 +++--- ....UpdateTests.UpdateComplex2(SQLite.MS.LinqService).sql | 2 +- ...UpdateTests.SetWithTernaryOperatorIssue(SQLite.MS).sql | 2 +- ...Tests.TestUpdateWithColumnFilter1(SQLite.MS,False).sql | 2 +- ...eTests.TestUpdateWithColumnFilter1(SQLite.MS,True).sql | 2 +- ...UpdateTests.TestUpdateWithColumnFilter2(SQLite.MS).sql | 8 ++++---- ...ests.xUpdate.UpdateTests.UpdateComplex1(SQLite.MS).sql | 6 +++--- ...xUpdate.UpdateTests.UpdateComplex1Async(SQLite.MS).sql | 6 +++--- ...ests.xUpdate.UpdateTests.UpdateComplex2(SQLite.MS).sql | 2 +- 14 files changed, 28 insertions(+), 28 deletions(-) diff --git a/SQLite.MS.LinqService/Tests/xUpdate/UpdateTests/Tests.xUpdate.UpdateTests.SetWithTernaryOperatorIssue(SQLite.MS.LinqService).sql b/SQLite.MS.LinqService/Tests/xUpdate/UpdateTests/Tests.xUpdate.UpdateTests.SetWithTernaryOperatorIssue(SQLite.MS.LinqService).sql index 7103a6876ba0..424c2af6ac2e 100644 --- a/SQLite.MS.LinqService/Tests/xUpdate/UpdateTests/Tests.xUpdate.UpdateTests.SetWithTernaryOperatorIssue(SQLite.MS.LinqService).sql +++ b/SQLite.MS.LinqService/Tests/xUpdate/UpdateTests/Tests.xUpdate.UpdateTests.SetWithTernaryOperatorIssue(SQLite.MS.LinqService).sql @@ -49,7 +49,7 @@ WHERE BeforeExecute -- SQLite.MS SQLite DECLARE @id -- Int32 -SET @id = 5 +SET @id = 11 SELECT [t1].[PersonID], diff --git a/SQLite.MS.LinqService/Tests/xUpdate/UpdateTests/Tests.xUpdate.UpdateTests.TestUpdateWithColumnFilter1(SQLite.MS.LinqService,False).sql b/SQLite.MS.LinqService/Tests/xUpdate/UpdateTests/Tests.xUpdate.UpdateTests.TestUpdateWithColumnFilter1(SQLite.MS.LinqService,False).sql index 43a4445403df..9979b051b82a 100644 --- a/SQLite.MS.LinqService/Tests/xUpdate/UpdateTests/Tests.xUpdate.UpdateTests.TestUpdateWithColumnFilter1(SQLite.MS.LinqService,False).sql +++ b/SQLite.MS.LinqService/Tests/xUpdate/UpdateTests/Tests.xUpdate.UpdateTests.TestUpdateWithColumnFilter1(SQLite.MS.LinqService,False).sql @@ -55,7 +55,7 @@ SET @LastName = 'whatever' DECLARE @Gender Char(1) -- AnsiStringFixedLength SET @Gender = 'M' DECLARE @ID -- Int32 -SET @ID = 5 +SET @ID = 15 UPDATE [Person] diff --git a/SQLite.MS.LinqService/Tests/xUpdate/UpdateTests/Tests.xUpdate.UpdateTests.TestUpdateWithColumnFilter1(SQLite.MS.LinqService,True).sql b/SQLite.MS.LinqService/Tests/xUpdate/UpdateTests/Tests.xUpdate.UpdateTests.TestUpdateWithColumnFilter1(SQLite.MS.LinqService,True).sql index f9c264e7dcaa..60363209de17 100644 --- a/SQLite.MS.LinqService/Tests/xUpdate/UpdateTests/Tests.xUpdate.UpdateTests.TestUpdateWithColumnFilter1(SQLite.MS.LinqService,True).sql +++ b/SQLite.MS.LinqService/Tests/xUpdate/UpdateTests/Tests.xUpdate.UpdateTests.TestUpdateWithColumnFilter1(SQLite.MS.LinqService,True).sql @@ -57,7 +57,7 @@ SET @MiddleName = 'updated name' DECLARE @Gender Char(1) -- AnsiStringFixedLength SET @Gender = 'M' DECLARE @ID -- Int32 -SET @ID = 5 +SET @ID = 14 UPDATE [Person] diff --git a/SQLite.MS.LinqService/Tests/xUpdate/UpdateTests/Tests.xUpdate.UpdateTests.TestUpdateWithColumnFilter2(SQLite.MS.LinqService).sql b/SQLite.MS.LinqService/Tests/xUpdate/UpdateTests/Tests.xUpdate.UpdateTests.TestUpdateWithColumnFilter2(SQLite.MS.LinqService).sql index cb5ccc99e4b1..2d4cfe711688 100644 --- a/SQLite.MS.LinqService/Tests/xUpdate/UpdateTests/Tests.xUpdate.UpdateTests.TestUpdateWithColumnFilter2(SQLite.MS.LinqService).sql +++ b/SQLite.MS.LinqService/Tests/xUpdate/UpdateTests/Tests.xUpdate.UpdateTests.TestUpdateWithColumnFilter2(SQLite.MS.LinqService).sql @@ -51,7 +51,7 @@ BeforeExecute DECLARE @FirstName NVarChar(25) -- String SET @FirstName = 'UpdateColumnFilterUpdated' DECLARE @ID -- Int32 -SET @ID = 5 +SET @ID = 17 UPDATE [Person] @@ -63,7 +63,7 @@ WHERE BeforeExecute -- SQLite.MS SQLite DECLARE @ID -- Int32 -SET @ID = 5 +SET @ID = 17 SELECT [x].[FirstName], @@ -88,7 +88,7 @@ SET @MiddleName = NULL DECLARE @Gender Char(1) -- AnsiStringFixedLength SET @Gender = 'M' DECLARE @ID -- Int32 -SET @ID = 5 +SET @ID = 17 UPDATE [Person] @@ -103,7 +103,7 @@ WHERE BeforeExecute -- SQLite.MS SQLite DECLARE @ID -- Int32 -SET @ID = 5 +SET @ID = 17 SELECT [t1].[FirstName], diff --git a/SQLite.MS.LinqService/Tests/xUpdate/UpdateTests/Tests.xUpdate.UpdateTests.UpdateComplex1(SQLite.MS.LinqService).sql b/SQLite.MS.LinqService/Tests/xUpdate/UpdateTests/Tests.xUpdate.UpdateTests.UpdateComplex1(SQLite.MS.LinqService).sql index bbb3b28ba06a..c34aec73a551 100644 --- a/SQLite.MS.LinqService/Tests/xUpdate/UpdateTests/Tests.xUpdate.UpdateTests.UpdateComplex1(SQLite.MS.LinqService).sql +++ b/SQLite.MS.LinqService/Tests/xUpdate/UpdateTests/Tests.xUpdate.UpdateTests.UpdateComplex1(SQLite.MS.LinqService).sql @@ -37,7 +37,7 @@ SELECT last_insert_rowid() BeforeExecute -- SQLite.MS SQLite DECLARE @id -- Int32 -SET @id = 5 +SET @id = 21 SELECT [t1].[PersonID], @@ -62,7 +62,7 @@ SET @Name_MiddleName = NULL DECLARE @Name_LastName NVarChar(13) -- String SET @Name_LastName = 'UpdateComplex' DECLARE @ID -- Int32 -SET @ID = 5 +SET @ID = 21 UPDATE [Person] @@ -77,7 +77,7 @@ WHERE BeforeExecute -- SQLite.MS SQLite DECLARE @id -- Int32 -SET @id = 5 +SET @id = 21 SELECT [t1].[PersonID], diff --git a/SQLite.MS.LinqService/Tests/xUpdate/UpdateTests/Tests.xUpdate.UpdateTests.UpdateComplex1Async(SQLite.MS.LinqService).sql b/SQLite.MS.LinqService/Tests/xUpdate/UpdateTests/Tests.xUpdate.UpdateTests.UpdateComplex1Async(SQLite.MS.LinqService).sql index 1d4d7e48a60c..4dfd4de9080c 100644 --- a/SQLite.MS.LinqService/Tests/xUpdate/UpdateTests/Tests.xUpdate.UpdateTests.UpdateComplex1Async(SQLite.MS.LinqService).sql +++ b/SQLite.MS.LinqService/Tests/xUpdate/UpdateTests/Tests.xUpdate.UpdateTests.UpdateComplex1Async(SQLite.MS.LinqService).sql @@ -37,7 +37,7 @@ SELECT last_insert_rowid() BeforeExecute -- SQLite.MS SQLite (asynchronously) DECLARE @id -- Int32 -SET @id = 5 +SET @id = 23 SELECT [t1].[PersonID], @@ -62,7 +62,7 @@ SET @Name_MiddleName = NULL DECLARE @Name_LastName NVarChar(13) -- String SET @Name_LastName = 'UpdateComplex' DECLARE @ID -- Int32 -SET @ID = 5 +SET @ID = 23 UPDATE [Person] @@ -77,7 +77,7 @@ WHERE BeforeExecute -- SQLite.MS SQLite (asynchronously) DECLARE @id -- Int32 -SET @id = 5 +SET @id = 23 SELECT [t1].[PersonID], diff --git a/SQLite.MS.LinqService/Tests/xUpdate/UpdateTests/Tests.xUpdate.UpdateTests.UpdateComplex2(SQLite.MS.LinqService).sql b/SQLite.MS.LinqService/Tests/xUpdate/UpdateTests/Tests.xUpdate.UpdateTests.UpdateComplex2(SQLite.MS.LinqService).sql index 8b0dd258abba..49be3a4e6e85 100644 --- a/SQLite.MS.LinqService/Tests/xUpdate/UpdateTests/Tests.xUpdate.UpdateTests.UpdateComplex2(SQLite.MS.LinqService).sql +++ b/SQLite.MS.LinqService/Tests/xUpdate/UpdateTests/Tests.xUpdate.UpdateTests.UpdateComplex2(SQLite.MS.LinqService).sql @@ -47,7 +47,7 @@ WHERE BeforeExecute -- SQLite.MS SQLite DECLARE @id -- Int32 -SET @id = 5 +SET @id = 25 SELECT [t1].[PersonID], diff --git a/SQLite.MS/Tests/xUpdate/UpdateTests/Tests.xUpdate.UpdateTests.SetWithTernaryOperatorIssue(SQLite.MS).sql b/SQLite.MS/Tests/xUpdate/UpdateTests/Tests.xUpdate.UpdateTests.SetWithTernaryOperatorIssue(SQLite.MS).sql index 7103a6876ba0..66ff9450fb09 100644 --- a/SQLite.MS/Tests/xUpdate/UpdateTests/Tests.xUpdate.UpdateTests.SetWithTernaryOperatorIssue(SQLite.MS).sql +++ b/SQLite.MS/Tests/xUpdate/UpdateTests/Tests.xUpdate.UpdateTests.SetWithTernaryOperatorIssue(SQLite.MS).sql @@ -49,7 +49,7 @@ WHERE BeforeExecute -- SQLite.MS SQLite DECLARE @id -- Int32 -SET @id = 5 +SET @id = 10 SELECT [t1].[PersonID], diff --git a/SQLite.MS/Tests/xUpdate/UpdateTests/Tests.xUpdate.UpdateTests.TestUpdateWithColumnFilter1(SQLite.MS,False).sql b/SQLite.MS/Tests/xUpdate/UpdateTests/Tests.xUpdate.UpdateTests.TestUpdateWithColumnFilter1(SQLite.MS,False).sql index 43a4445403df..b7ab94e73ba4 100644 --- a/SQLite.MS/Tests/xUpdate/UpdateTests/Tests.xUpdate.UpdateTests.TestUpdateWithColumnFilter1(SQLite.MS,False).sql +++ b/SQLite.MS/Tests/xUpdate/UpdateTests/Tests.xUpdate.UpdateTests.TestUpdateWithColumnFilter1(SQLite.MS,False).sql @@ -55,7 +55,7 @@ SET @LastName = 'whatever' DECLARE @Gender Char(1) -- AnsiStringFixedLength SET @Gender = 'M' DECLARE @ID -- Int32 -SET @ID = 5 +SET @ID = 13 UPDATE [Person] diff --git a/SQLite.MS/Tests/xUpdate/UpdateTests/Tests.xUpdate.UpdateTests.TestUpdateWithColumnFilter1(SQLite.MS,True).sql b/SQLite.MS/Tests/xUpdate/UpdateTests/Tests.xUpdate.UpdateTests.TestUpdateWithColumnFilter1(SQLite.MS,True).sql index f9c264e7dcaa..6558bc954306 100644 --- a/SQLite.MS/Tests/xUpdate/UpdateTests/Tests.xUpdate.UpdateTests.TestUpdateWithColumnFilter1(SQLite.MS,True).sql +++ b/SQLite.MS/Tests/xUpdate/UpdateTests/Tests.xUpdate.UpdateTests.TestUpdateWithColumnFilter1(SQLite.MS,True).sql @@ -57,7 +57,7 @@ SET @MiddleName = 'updated name' DECLARE @Gender Char(1) -- AnsiStringFixedLength SET @Gender = 'M' DECLARE @ID -- Int32 -SET @ID = 5 +SET @ID = 12 UPDATE [Person] diff --git a/SQLite.MS/Tests/xUpdate/UpdateTests/Tests.xUpdate.UpdateTests.TestUpdateWithColumnFilter2(SQLite.MS).sql b/SQLite.MS/Tests/xUpdate/UpdateTests/Tests.xUpdate.UpdateTests.TestUpdateWithColumnFilter2(SQLite.MS).sql index cb5ccc99e4b1..8f9886cabc25 100644 --- a/SQLite.MS/Tests/xUpdate/UpdateTests/Tests.xUpdate.UpdateTests.TestUpdateWithColumnFilter2(SQLite.MS).sql +++ b/SQLite.MS/Tests/xUpdate/UpdateTests/Tests.xUpdate.UpdateTests.TestUpdateWithColumnFilter2(SQLite.MS).sql @@ -51,7 +51,7 @@ BeforeExecute DECLARE @FirstName NVarChar(25) -- String SET @FirstName = 'UpdateColumnFilterUpdated' DECLARE @ID -- Int32 -SET @ID = 5 +SET @ID = 16 UPDATE [Person] @@ -63,7 +63,7 @@ WHERE BeforeExecute -- SQLite.MS SQLite DECLARE @ID -- Int32 -SET @ID = 5 +SET @ID = 16 SELECT [x].[FirstName], @@ -88,7 +88,7 @@ SET @MiddleName = NULL DECLARE @Gender Char(1) -- AnsiStringFixedLength SET @Gender = 'M' DECLARE @ID -- Int32 -SET @ID = 5 +SET @ID = 16 UPDATE [Person] @@ -103,7 +103,7 @@ WHERE BeforeExecute -- SQLite.MS SQLite DECLARE @ID -- Int32 -SET @ID = 5 +SET @ID = 16 SELECT [t1].[FirstName], diff --git a/SQLite.MS/Tests/xUpdate/UpdateTests/Tests.xUpdate.UpdateTests.UpdateComplex1(SQLite.MS).sql b/SQLite.MS/Tests/xUpdate/UpdateTests/Tests.xUpdate.UpdateTests.UpdateComplex1(SQLite.MS).sql index bbb3b28ba06a..f70493d73874 100644 --- a/SQLite.MS/Tests/xUpdate/UpdateTests/Tests.xUpdate.UpdateTests.UpdateComplex1(SQLite.MS).sql +++ b/SQLite.MS/Tests/xUpdate/UpdateTests/Tests.xUpdate.UpdateTests.UpdateComplex1(SQLite.MS).sql @@ -37,7 +37,7 @@ SELECT last_insert_rowid() BeforeExecute -- SQLite.MS SQLite DECLARE @id -- Int32 -SET @id = 5 +SET @id = 20 SELECT [t1].[PersonID], @@ -62,7 +62,7 @@ SET @Name_MiddleName = NULL DECLARE @Name_LastName NVarChar(13) -- String SET @Name_LastName = 'UpdateComplex' DECLARE @ID -- Int32 -SET @ID = 5 +SET @ID = 20 UPDATE [Person] @@ -77,7 +77,7 @@ WHERE BeforeExecute -- SQLite.MS SQLite DECLARE @id -- Int32 -SET @id = 5 +SET @id = 20 SELECT [t1].[PersonID], diff --git a/SQLite.MS/Tests/xUpdate/UpdateTests/Tests.xUpdate.UpdateTests.UpdateComplex1Async(SQLite.MS).sql b/SQLite.MS/Tests/xUpdate/UpdateTests/Tests.xUpdate.UpdateTests.UpdateComplex1Async(SQLite.MS).sql index 1d4d7e48a60c..a8e75bbf1ef7 100644 --- a/SQLite.MS/Tests/xUpdate/UpdateTests/Tests.xUpdate.UpdateTests.UpdateComplex1Async(SQLite.MS).sql +++ b/SQLite.MS/Tests/xUpdate/UpdateTests/Tests.xUpdate.UpdateTests.UpdateComplex1Async(SQLite.MS).sql @@ -37,7 +37,7 @@ SELECT last_insert_rowid() BeforeExecute -- SQLite.MS SQLite (asynchronously) DECLARE @id -- Int32 -SET @id = 5 +SET @id = 22 SELECT [t1].[PersonID], @@ -62,7 +62,7 @@ SET @Name_MiddleName = NULL DECLARE @Name_LastName NVarChar(13) -- String SET @Name_LastName = 'UpdateComplex' DECLARE @ID -- Int32 -SET @ID = 5 +SET @ID = 22 UPDATE [Person] @@ -77,7 +77,7 @@ WHERE BeforeExecute -- SQLite.MS SQLite (asynchronously) DECLARE @id -- Int32 -SET @id = 5 +SET @id = 22 SELECT [t1].[PersonID], diff --git a/SQLite.MS/Tests/xUpdate/UpdateTests/Tests.xUpdate.UpdateTests.UpdateComplex2(SQLite.MS).sql b/SQLite.MS/Tests/xUpdate/UpdateTests/Tests.xUpdate.UpdateTests.UpdateComplex2(SQLite.MS).sql index 8b0dd258abba..ebc6176810dc 100644 --- a/SQLite.MS/Tests/xUpdate/UpdateTests/Tests.xUpdate.UpdateTests.UpdateComplex2(SQLite.MS).sql +++ b/SQLite.MS/Tests/xUpdate/UpdateTests/Tests.xUpdate.UpdateTests.UpdateComplex2(SQLite.MS).sql @@ -47,7 +47,7 @@ WHERE BeforeExecute -- SQLite.MS SQLite DECLARE @id -- Int32 -SET @id = 5 +SET @id = 24 SELECT [t1].[PersonID],