Skip to content

Commit 9609d1b

Browse files
author
Azure Pipelines Bot
committed
[Windows / SQLite (both providers)] baselines
1 parent 8e31776 commit 9609d1b

File tree

24 files changed

+104
-16
lines changed

24 files changed

+104
-16
lines changed

SQLite.Classic.LinqService/Tests/Linq/EnumerableSourceTests/Tests.Linq.EnumerableSourceTests.EmptySubQuery(SQLite.Classic.LinqService,1).sql

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ WHERE
1111
SELECT
1212
*
1313
FROM
14-
(SELECT NULL [Id], NULL [Value] WHERE 1 = 0) [r]
14+
(SELECT CAST(NULL AS INTEGER) [Id], CAST(NULL AS NVarChar(255)) [Value] WHERE 1 = 0) [r]
1515
WHERE
1616
[t].[Id] = [r].[Id] AND ([t].[Value] = [r].[Value] OR [t].[Value] IS NULL AND [r].[Value] IS NULL)
1717
)

SQLite.Classic.LinqService/Tests/Linq/EnumerableSourceTests/Tests.Linq.EnumerableSourceTests.EmptySubQuery(SQLite.Classic.LinqService,2).sql

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ WHERE
1111
SELECT
1212
*
1313
FROM
14-
(SELECT NULL [Id], NULL [Value] WHERE 1 = 0) [r]
14+
(SELECT CAST(NULL AS INTEGER) [Id], CAST(NULL AS NVarChar(255)) [Value] WHERE 1 = 0) [r]
1515
WHERE
1616
[t].[Id] = [r].[Id] AND ([t].[Value] = [r].[Value] OR [t].[Value] IS NULL AND [r].[Value] IS NULL)
1717
)

SQLite.Classic.LinqService/Tests/Linq/EnumerableSourceTests/Tests.Linq.EnumerableSourceTests.EmptyValues(SQLite.Classic.LinqService,1).sql

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,5 +6,5 @@ SELECT
66
[t].[Value]
77
FROM
88
[TableToInsert] [t]
9-
INNER JOIN (SELECT NULL [Id], NULL [Value] WHERE 1 = 0) [r] ON [t].[Id] = [r].[Id] AND ([t].[Value] = [r].[Value] OR [t].[Value] IS NULL AND [r].[Value] IS NULL)
9+
INNER JOIN (SELECT CAST(NULL AS INTEGER) [Id], CAST(NULL AS NVarChar(255)) [Value] WHERE 1 = 0) [r] ON [t].[Id] = [r].[Id] AND ([t].[Value] = [r].[Value] OR [t].[Value] IS NULL AND [r].[Value] IS NULL)
1010

SQLite.Classic.LinqService/Tests/Linq/EnumerableSourceTests/Tests.Linq.EnumerableSourceTests.EmptyValues(SQLite.Classic.LinqService,2).sql

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,5 +6,5 @@ SELECT
66
[t].[Value]
77
FROM
88
[TableToInsert] [t]
9-
INNER JOIN (SELECT NULL [Id], NULL [Value] WHERE 1 = 0) [r] ON [t].[Id] = [r].[Id] AND ([t].[Value] = [r].[Value] OR [t].[Value] IS NULL AND [r].[Value] IS NULL)
9+
INNER JOIN (SELECT CAST(NULL AS INTEGER) [Id], CAST(NULL AS NVarChar(255)) [Value] WHERE 1 = 0) [r] ON [t].[Id] = [r].[Id] AND ([t].[Value] = [r].[Value] OR [t].[Value] IS NULL AND [r].[Value] IS NULL)
1010

Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
BeforeExecute
2+
-- SQLite.Classic SQLite (asynchronously)
3+
4+
SELECT
5+
[g_1].[Id],
6+
SUM([g_1].[Id])
7+
FROM
8+
(SELECT CAST(NULL AS INTEGER) [Id] WHERE 1 = 0) [g_1]
9+
GROUP BY
10+
[g_1].[Id]
11+
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
BeforeExecute
2+
-- SQLite.Classic SQLite (asynchronously)
3+
4+
SELECT
5+
[g_1].[Id],
6+
SUM([g_1].[Id])
7+
FROM
8+
(SELECT CAST(NULL AS INTEGER) [Id] WHERE 1 = 0) [g_1]
9+
GROUP BY
10+
[g_1].[Id]
11+

SQLite.Classic/Tests/Linq/EnumerableSourceTests/Tests.Linq.EnumerableSourceTests.EmptySubQuery(SQLite.Classic,1).sql

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ WHERE
1111
SELECT
1212
*
1313
FROM
14-
(SELECT NULL [Id], NULL [Value] WHERE 1 = 0) [r]
14+
(SELECT CAST(NULL AS INTEGER) [Id], CAST(NULL AS NVarChar(255)) [Value] WHERE 1 = 0) [r]
1515
WHERE
1616
[t].[Id] = [r].[Id] AND ([t].[Value] = [r].[Value] OR [t].[Value] IS NULL AND [r].[Value] IS NULL)
1717
)

SQLite.Classic/Tests/Linq/EnumerableSourceTests/Tests.Linq.EnumerableSourceTests.EmptySubQuery(SQLite.Classic,2).sql

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ WHERE
1111
SELECT
1212
*
1313
FROM
14-
(SELECT NULL [Id], NULL [Value] WHERE 1 = 0) [r]
14+
(SELECT CAST(NULL AS INTEGER) [Id], CAST(NULL AS NVarChar(255)) [Value] WHERE 1 = 0) [r]
1515
WHERE
1616
[t].[Id] = [r].[Id] AND ([t].[Value] = [r].[Value] OR [t].[Value] IS NULL AND [r].[Value] IS NULL)
1717
)

SQLite.Classic/Tests/Linq/EnumerableSourceTests/Tests.Linq.EnumerableSourceTests.EmptyValues(SQLite.Classic,1).sql

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,5 +6,5 @@ SELECT
66
[t].[Value]
77
FROM
88
[TableToInsert] [t]
9-
INNER JOIN (SELECT NULL [Id], NULL [Value] WHERE 1 = 0) [r] ON [t].[Id] = [r].[Id] AND ([t].[Value] = [r].[Value] OR [t].[Value] IS NULL AND [r].[Value] IS NULL)
9+
INNER JOIN (SELECT CAST(NULL AS INTEGER) [Id], CAST(NULL AS NVarChar(255)) [Value] WHERE 1 = 0) [r] ON [t].[Id] = [r].[Id] AND ([t].[Value] = [r].[Value] OR [t].[Value] IS NULL AND [r].[Value] IS NULL)
1010

SQLite.Classic/Tests/Linq/EnumerableSourceTests/Tests.Linq.EnumerableSourceTests.EmptyValues(SQLite.Classic,2).sql

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,5 +6,5 @@ SELECT
66
[t].[Value]
77
FROM
88
[TableToInsert] [t]
9-
INNER JOIN (SELECT NULL [Id], NULL [Value] WHERE 1 = 0) [r] ON [t].[Id] = [r].[Id] AND ([t].[Value] = [r].[Value] OR [t].[Value] IS NULL AND [r].[Value] IS NULL)
9+
INNER JOIN (SELECT CAST(NULL AS INTEGER) [Id], CAST(NULL AS NVarChar(255)) [Value] WHERE 1 = 0) [r] ON [t].[Id] = [r].[Id] AND ([t].[Value] = [r].[Value] OR [t].[Value] IS NULL AND [r].[Value] IS NULL)
1010

0 commit comments

Comments
 (0)