Skip to content

Commit 644e37b

Browse files
author
Azure Pipelines Bot
committed
[Windows / SQLite (both providers)] baselines
1 parent b9cd885 commit 644e37b

12 files changed

+26
-26
lines changed

SQLite.MS.LinqService/Tests/xUpdate/UpdateTests/Tests.xUpdate.UpdateTests.TestUpdateWithColumnFilter1(SQLite.MS.LinqService,False).sql

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ SET @LastName = 'whatever'
5050
DECLARE @Gender Char(1) -- AnsiStringFixedLength
5151
SET @Gender = 'M'
5252
DECLARE @ID -- Int32
53-
SET @ID = 5
53+
SET @ID = 15
5454

5555
UPDATE
5656
[Person]

SQLite.MS.LinqService/Tests/xUpdate/UpdateTests/Tests.xUpdate.UpdateTests.TestUpdateWithColumnFilter1(SQLite.MS.LinqService,True).sql

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ SET @MiddleName = 'updated name'
5252
DECLARE @Gender Char(1) -- AnsiStringFixedLength
5353
SET @Gender = 'M'
5454
DECLARE @ID -- Int32
55-
SET @ID = 5
55+
SET @ID = 14
5656

5757
UPDATE
5858
[Person]

SQLite.MS.LinqService/Tests/xUpdate/UpdateTests/Tests.xUpdate.UpdateTests.TestUpdateWithColumnFilter2(SQLite.MS.LinqService).sql

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ BeforeExecute
4646
DECLARE @FirstName NVarChar(25) -- String
4747
SET @FirstName = 'UpdateColumnFilterUpdated'
4848
DECLARE @ID -- Int32
49-
SET @ID = 5
49+
SET @ID = 17
5050

5151
UPDATE
5252
[Person]
@@ -58,7 +58,7 @@ WHERE
5858
BeforeExecute
5959
-- SQLite.MS SQLite
6060
DECLARE @ID -- Int32
61-
SET @ID = 5
61+
SET @ID = 17
6262

6363
SELECT
6464
[x].[FirstName],
@@ -83,7 +83,7 @@ SET @MiddleName = NULL
8383
DECLARE @Gender Char(1) -- AnsiStringFixedLength
8484
SET @Gender = 'M'
8585
DECLARE @ID -- Int32
86-
SET @ID = 5
86+
SET @ID = 17
8787

8888
UPDATE
8989
[Person]
@@ -98,7 +98,7 @@ WHERE
9898
BeforeExecute
9999
-- SQLite.MS SQLite
100100
DECLARE @ID -- Int32
101-
SET @ID = 5
101+
SET @ID = 17
102102

103103
SELECT
104104
[t1].[FirstName],

SQLite.MS.LinqService/Tests/xUpdate/UpdateTests/Tests.xUpdate.UpdateTests.UpdateComplex1(SQLite.MS.LinqService).sql

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ SELECT last_insert_rowid()
3232
BeforeExecute
3333
-- SQLite.MS SQLite
3434
DECLARE @id -- Int32
35-
SET @id = 5
35+
SET @id = 21
3636

3737
SELECT
3838
[t1].[PersonID],
@@ -57,7 +57,7 @@ SET @Name_MiddleName = NULL
5757
DECLARE @Name_LastName NVarChar(13) -- String
5858
SET @Name_LastName = 'UpdateComplex'
5959
DECLARE @ID -- Int32
60-
SET @ID = 5
60+
SET @ID = 21
6161

6262
UPDATE
6363
[Person]
@@ -72,7 +72,7 @@ WHERE
7272
BeforeExecute
7373
-- SQLite.MS SQLite
7474
DECLARE @id -- Int32
75-
SET @id = 5
75+
SET @id = 21
7676

7777
SELECT
7878
[t1].[PersonID],

SQLite.MS.LinqService/Tests/xUpdate/UpdateTests/Tests.xUpdate.UpdateTests.UpdateComplex1Async(SQLite.MS.LinqService).sql

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ SELECT last_insert_rowid()
3232
BeforeExecute
3333
-- SQLite.MS SQLite (asynchronously)
3434
DECLARE @id -- Int32
35-
SET @id = 5
35+
SET @id = 23
3636

3737
SELECT
3838
[t1].[PersonID],
@@ -57,7 +57,7 @@ SET @Name_MiddleName = NULL
5757
DECLARE @Name_LastName NVarChar(13) -- String
5858
SET @Name_LastName = 'UpdateComplex'
5959
DECLARE @ID -- Int32
60-
SET @ID = 5
60+
SET @ID = 23
6161

6262
UPDATE
6363
[Person]
@@ -72,7 +72,7 @@ WHERE
7272
BeforeExecute
7373
-- SQLite.MS SQLite (asynchronously)
7474
DECLARE @id -- Int32
75-
SET @id = 5
75+
SET @id = 23
7676

7777
SELECT
7878
[t1].[PersonID],

SQLite.MS.LinqService/Tests/xUpdate/UpdateTests/Tests.xUpdate.UpdateTests.UpdateComplex2(SQLite.MS.LinqService).sql

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ WHERE
4242
BeforeExecute
4343
-- SQLite.MS SQLite
4444
DECLARE @id -- Int32
45-
SET @id = 5
45+
SET @id = 25
4646

4747
SELECT
4848
[t1].[PersonID],

SQLite.MS/Tests/xUpdate/UpdateTests/Tests.xUpdate.UpdateTests.TestUpdateWithColumnFilter1(SQLite.MS,False).sql

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ SET @LastName = 'whatever'
5050
DECLARE @Gender Char(1) -- AnsiStringFixedLength
5151
SET @Gender = 'M'
5252
DECLARE @ID -- Int32
53-
SET @ID = 5
53+
SET @ID = 13
5454

5555
UPDATE
5656
[Person]

SQLite.MS/Tests/xUpdate/UpdateTests/Tests.xUpdate.UpdateTests.TestUpdateWithColumnFilter1(SQLite.MS,True).sql

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ SET @MiddleName = 'updated name'
5252
DECLARE @Gender Char(1) -- AnsiStringFixedLength
5353
SET @Gender = 'M'
5454
DECLARE @ID -- Int32
55-
SET @ID = 5
55+
SET @ID = 12
5656

5757
UPDATE
5858
[Person]

SQLite.MS/Tests/xUpdate/UpdateTests/Tests.xUpdate.UpdateTests.TestUpdateWithColumnFilter2(SQLite.MS).sql

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ BeforeExecute
4646
DECLARE @FirstName NVarChar(25) -- String
4747
SET @FirstName = 'UpdateColumnFilterUpdated'
4848
DECLARE @ID -- Int32
49-
SET @ID = 5
49+
SET @ID = 16
5050

5151
UPDATE
5252
[Person]
@@ -58,7 +58,7 @@ WHERE
5858
BeforeExecute
5959
-- SQLite.MS SQLite
6060
DECLARE @ID -- Int32
61-
SET @ID = 5
61+
SET @ID = 16
6262

6363
SELECT
6464
[x].[FirstName],
@@ -83,7 +83,7 @@ SET @MiddleName = NULL
8383
DECLARE @Gender Char(1) -- AnsiStringFixedLength
8484
SET @Gender = 'M'
8585
DECLARE @ID -- Int32
86-
SET @ID = 5
86+
SET @ID = 16
8787

8888
UPDATE
8989
[Person]
@@ -98,7 +98,7 @@ WHERE
9898
BeforeExecute
9999
-- SQLite.MS SQLite
100100
DECLARE @ID -- Int32
101-
SET @ID = 5
101+
SET @ID = 16
102102

103103
SELECT
104104
[t1].[FirstName],

SQLite.MS/Tests/xUpdate/UpdateTests/Tests.xUpdate.UpdateTests.UpdateComplex1(SQLite.MS).sql

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ SELECT last_insert_rowid()
3232
BeforeExecute
3333
-- SQLite.MS SQLite
3434
DECLARE @id -- Int32
35-
SET @id = 5
35+
SET @id = 20
3636

3737
SELECT
3838
[t1].[PersonID],
@@ -57,7 +57,7 @@ SET @Name_MiddleName = NULL
5757
DECLARE @Name_LastName NVarChar(13) -- String
5858
SET @Name_LastName = 'UpdateComplex'
5959
DECLARE @ID -- Int32
60-
SET @ID = 5
60+
SET @ID = 20
6161

6262
UPDATE
6363
[Person]
@@ -72,7 +72,7 @@ WHERE
7272
BeforeExecute
7373
-- SQLite.MS SQLite
7474
DECLARE @id -- Int32
75-
SET @id = 5
75+
SET @id = 20
7676

7777
SELECT
7878
[t1].[PersonID],

SQLite.MS/Tests/xUpdate/UpdateTests/Tests.xUpdate.UpdateTests.UpdateComplex1Async(SQLite.MS).sql

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ SELECT last_insert_rowid()
3232
BeforeExecute
3333
-- SQLite.MS SQLite (asynchronously)
3434
DECLARE @id -- Int32
35-
SET @id = 5
35+
SET @id = 22
3636

3737
SELECT
3838
[t1].[PersonID],
@@ -57,7 +57,7 @@ SET @Name_MiddleName = NULL
5757
DECLARE @Name_LastName NVarChar(13) -- String
5858
SET @Name_LastName = 'UpdateComplex'
5959
DECLARE @ID -- Int32
60-
SET @ID = 5
60+
SET @ID = 22
6161

6262
UPDATE
6363
[Person]
@@ -72,7 +72,7 @@ WHERE
7272
BeforeExecute
7373
-- SQLite.MS SQLite (asynchronously)
7474
DECLARE @id -- Int32
75-
SET @id = 5
75+
SET @id = 22
7676

7777
SELECT
7878
[t1].[PersonID],

SQLite.MS/Tests/xUpdate/UpdateTests/Tests.xUpdate.UpdateTests.UpdateComplex2(SQLite.MS).sql

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ WHERE
4242
BeforeExecute
4343
-- SQLite.MS SQLite
4444
DECLARE @id -- Int32
45-
SET @id = 5
45+
SET @id = 24
4646

4747
SELECT
4848
[t1].[PersonID],

0 commit comments

Comments
 (0)