Skip to content

Commit c41974a

Browse files
author
Azure Pipelines Bot
committed
[Windows / SQLite (both providers)] baselines
1 parent 6b7af37 commit c41974a

File tree

6 files changed

+30
-30
lines changed

6 files changed

+30
-30
lines changed

Northwind.SQLite.MS/Tests/SchemaProvider/SchemaProviderTests/Tests.SchemaProvider.SchemaProviderTests.NorthwindTest(Northwind.SQLite.MS).sql

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -68,26 +68,18 @@
6868

6969
-- Northwind.SQLite.MS SQLite.MS SQLite
7070

71-
SELECT * FROM [Products by Category]
71+
SELECT * FROM [Summary of Sales by Quarter]
7272

7373
-- Northwind.SQLite.MS SQLite.MS SQLite
7474

7575
SELECT * FROM [Summary of Sales by Year]
7676

7777
-- Northwind.SQLite.MS SQLite.MS SQLite
7878

79-
SELECT * FROM [Summary of Sales by Quarter]
80-
81-
-- Northwind.SQLite.MS SQLite.MS SQLite
82-
8379
SELECT * FROM [Order Subtotals]
8480

8581
-- Northwind.SQLite.MS SQLite.MS SQLite
8682

87-
SELECT * FROM [Alphabetical list of products]
88-
89-
-- Northwind.SQLite.MS SQLite.MS SQLite
90-
9183
SELECT * FROM [Products Above Average Price]
9284

9385
-- Northwind.SQLite.MS SQLite.MS SQLite
@@ -106,6 +98,14 @@ SELECT * FROM [Customer and Suppliers by City]
10698

10799
SELECT * FROM [Current Product List]
108100

101+
-- Northwind.SQLite.MS SQLite.MS SQLite
102+
103+
SELECT * FROM [Products by Category]
104+
105+
-- Northwind.SQLite.MS SQLite.MS SQLite
106+
107+
SELECT * FROM [Alphabetical list of products]
108+
109109
-- Northwind.SQLite.MS SQLite.MS SQLite
110110

111111

Northwind.SQLite/Tests/SchemaProvider/SchemaProviderTests/Tests.SchemaProvider.SchemaProviderTests.NorthwindTest(Northwind.SQLite).sql

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -68,26 +68,18 @@
6868

6969
-- Northwind.SQLite SQLite.Classic SQLite
7070

71-
SELECT * FROM [Products by Category]
71+
SELECT * FROM [Summary of Sales by Quarter]
7272

7373
-- Northwind.SQLite SQLite.Classic SQLite
7474

7575
SELECT * FROM [Summary of Sales by Year]
7676

7777
-- Northwind.SQLite SQLite.Classic SQLite
7878

79-
SELECT * FROM [Summary of Sales by Quarter]
80-
81-
-- Northwind.SQLite SQLite.Classic SQLite
82-
8379
SELECT * FROM [Order Subtotals]
8480

8581
-- Northwind.SQLite SQLite.Classic SQLite
8682

87-
SELECT * FROM [Alphabetical list of products]
88-
89-
-- Northwind.SQLite SQLite.Classic SQLite
90-
9183
SELECT * FROM [Products Above Average Price]
9284

9385
-- Northwind.SQLite SQLite.Classic SQLite
@@ -106,6 +98,14 @@ SELECT * FROM [Customer and Suppliers by City]
10698

10799
SELECT * FROM [Current Product List]
108100

101+
-- Northwind.SQLite SQLite.Classic SQLite
102+
103+
SELECT * FROM [Products by Category]
104+
105+
-- Northwind.SQLite SQLite.Classic SQLite
106+
107+
SELECT * FROM [Alphabetical list of products]
108+
109109
-- Northwind.SQLite SQLite.Classic SQLite
110110

111111

SQLite.Classic/Tests/Linq/CteTests/Tests.Linq.CteTests.Issue_SequenceBuildFailed_1(SQLite.Classic).sql

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ AS
1616
INNER JOIN [Patient] [p] ON [t1].[Id] = [p].[PersonID] + 1
1717
)
1818
SELECT
19-
[m_1].[Item1],
19+
[m_1].[Id],
2020
[d].[FirstName],
2121
[d].[PersonID],
2222
[d].[LastName],
@@ -25,12 +25,12 @@ SELECT
2525
FROM
2626
(
2727
SELECT DISTINCT
28-
[t2].[Id] as [Item1]
28+
[t2].[Id]
2929
FROM
3030
[cte] [t2]
3131
INNER JOIN [Patient] [p_1] ON [t2].[Id] = [p_1].[PersonID]
3232
) [m_1]
33-
INNER JOIN [Person] [d] ON [d].[PersonID] = [m_1].[Item1]
33+
INNER JOIN [Person] [d] ON [d].[PersonID] = [m_1].[Id]
3434

3535
-- SQLite.Classic SQLite
3636

SQLite.Classic/Tests/Linq/CteTests/Tests.Linq.CteTests.Issue_SequenceBuildFailed_2(SQLite.Classic).sql

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ AS
1010
LEFT JOIN [Patient] [a_Patient] ON [s].[PersonID] = [a_Patient].[PersonID]
1111
)
1212
SELECT
13-
[m_1].[Item1],
13+
[m_1].[PersonID],
1414
[d].[FirstName],
1515
[d].[PersonID],
1616
[d].[LastName],
@@ -19,12 +19,12 @@ SELECT
1919
FROM
2020
(
2121
SELECT DISTINCT
22-
[t1].[PersonID] as [Item1]
22+
[t1].[PersonID]
2323
FROM
2424
[CTE_1] [t1]
2525
INNER JOIN [Patient] [p] ON [t1].[PersonID] = [p].[PersonID]
2626
) [m_1]
27-
INNER JOIN [Person] [d] ON [d].[PersonID] = [m_1].[Item1]
27+
INNER JOIN [Person] [d] ON [d].[PersonID] = [m_1].[PersonID]
2828

2929
-- SQLite.Classic SQLite
3030

SQLite.MS/Tests/Linq/CteTests/Tests.Linq.CteTests.Issue_SequenceBuildFailed_1(SQLite.MS).sql

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ AS
1616
INNER JOIN [Patient] [p] ON [t1].[Id] = [p].[PersonID] + 1
1717
)
1818
SELECT
19-
[m_1].[Item1],
19+
[m_1].[Id],
2020
[d].[FirstName],
2121
[d].[PersonID],
2222
[d].[LastName],
@@ -25,12 +25,12 @@ SELECT
2525
FROM
2626
(
2727
SELECT DISTINCT
28-
[t2].[Id] as [Item1]
28+
[t2].[Id]
2929
FROM
3030
[cte] [t2]
3131
INNER JOIN [Patient] [p_1] ON [t2].[Id] = [p_1].[PersonID]
3232
) [m_1]
33-
INNER JOIN [Person] [d] ON [d].[PersonID] = [m_1].[Item1]
33+
INNER JOIN [Person] [d] ON [d].[PersonID] = [m_1].[Id]
3434

3535
-- SQLite.MS SQLite
3636

SQLite.MS/Tests/Linq/CteTests/Tests.Linq.CteTests.Issue_SequenceBuildFailed_2(SQLite.MS).sql

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ AS
1010
LEFT JOIN [Patient] [a_Patient] ON [s].[PersonID] = [a_Patient].[PersonID]
1111
)
1212
SELECT
13-
[m_1].[Item1],
13+
[m_1].[PersonID],
1414
[d].[FirstName],
1515
[d].[PersonID],
1616
[d].[LastName],
@@ -19,12 +19,12 @@ SELECT
1919
FROM
2020
(
2121
SELECT DISTINCT
22-
[t1].[PersonID] as [Item1]
22+
[t1].[PersonID]
2323
FROM
2424
[CTE_1] [t1]
2525
INNER JOIN [Patient] [p] ON [t1].[PersonID] = [p].[PersonID]
2626
) [m_1]
27-
INNER JOIN [Person] [d] ON [d].[PersonID] = [m_1].[Item1]
27+
INNER JOIN [Person] [d] ON [d].[PersonID] = [m_1].[PersonID]
2828

2929
-- SQLite.MS SQLite
3030

0 commit comments

Comments
 (0)