Skip to content

Commit 6620ea5

Browse files
author
Azure Pipelines Bot
committed
[Linux / SQL Server EXTRAS] baselines
1 parent ee33940 commit 6620ea5

File tree

48 files changed

+208
-32
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

48 files changed

+208
-32
lines changed

SqlServer.Contained.LinqService/Tests/Linq/EnumerableSourceTests/Tests.Linq.EnumerableSourceTests.EmptySubQuery(SqlServer.Contained.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]([Id], [Value])
14+
(SELECT CAST(NULL AS Int) [Id], CAST(NULL AS NVarChar(4000)) [Value] WHERE 1 = 0) [r]([Id], [Value])
1515
WHERE
1616
[t].[Id] = [r].[Id] AND ([t].[Value] = [r].[Value] OR [t].[Value] IS NULL AND [r].[Value] IS NULL)
1717
)

SqlServer.Contained.LinqService/Tests/Linq/EnumerableSourceTests/Tests.Linq.EnumerableSourceTests.EmptySubQuery(SqlServer.Contained.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]([Id], [Value])
14+
(SELECT CAST(NULL AS Int) [Id], CAST(NULL AS NVarChar(4000)) [Value] WHERE 1 = 0) [r]([Id], [Value])
1515
WHERE
1616
[t].[Id] = [r].[Id] AND ([t].[Value] = [r].[Value] OR [t].[Value] IS NULL AND [r].[Value] IS NULL)
1717
)

SqlServer.Contained.LinqService/Tests/Linq/EnumerableSourceTests/Tests.Linq.EnumerableSourceTests.EmptyValues(SqlServer.Contained.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]([Id], [Value]) 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 Int) [Id], CAST(NULL AS NVarChar(4000)) [Value] WHERE 1 = 0) [r]([Id], [Value]) ON [t].[Id] = [r].[Id] AND ([t].[Value] = [r].[Value] OR [t].[Value] IS NULL AND [r].[Value] IS NULL)
1010

SqlServer.Contained.LinqService/Tests/Linq/EnumerableSourceTests/Tests.Linq.EnumerableSourceTests.EmptyValues(SqlServer.Contained.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]([Id], [Value]) 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 Int) [Id], CAST(NULL AS NVarChar(4000)) [Value] WHERE 1 = 0) [r]([Id], [Value]) 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+
-- SqlServer.Contained SqlServer.2019 (asynchronously)
3+
4+
SELECT
5+
[g_1].[Id],
6+
SUM([g_1].[Id])
7+
FROM
8+
(SELECT CAST(NULL AS Int) [Id] WHERE 1 = 0) [g_1]([Id])
9+
GROUP BY
10+
[g_1].[Id]
11+
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
BeforeExecute
2+
-- SqlServer.Contained SqlServer.2019 (asynchronously)
3+
4+
SELECT
5+
[g_1].[Id],
6+
SUM([g_1].[Id])
7+
FROM
8+
(SELECT CAST(NULL AS Int) [Id] WHERE 1 = 0) [g_1]([Id])
9+
GROUP BY
10+
[g_1].[Id]
11+

SqlServer.Contained.MS.LinqService/Tests/Linq/EnumerableSourceTests/Tests.Linq.EnumerableSourceTests.EmptySubQuery(SqlServer.Contained.MS.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]([Id], [Value])
14+
(SELECT CAST(NULL AS Int) [Id], CAST(NULL AS NVarChar(4000)) [Value] WHERE 1 = 0) [r]([Id], [Value])
1515
WHERE
1616
[t].[Id] = [r].[Id] AND ([t].[Value] = [r].[Value] OR [t].[Value] IS NULL AND [r].[Value] IS NULL)
1717
)

SqlServer.Contained.MS.LinqService/Tests/Linq/EnumerableSourceTests/Tests.Linq.EnumerableSourceTests.EmptySubQuery(SqlServer.Contained.MS.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]([Id], [Value])
14+
(SELECT CAST(NULL AS Int) [Id], CAST(NULL AS NVarChar(4000)) [Value] WHERE 1 = 0) [r]([Id], [Value])
1515
WHERE
1616
[t].[Id] = [r].[Id] AND ([t].[Value] = [r].[Value] OR [t].[Value] IS NULL AND [r].[Value] IS NULL)
1717
)

SqlServer.Contained.MS.LinqService/Tests/Linq/EnumerableSourceTests/Tests.Linq.EnumerableSourceTests.EmptyValues(SqlServer.Contained.MS.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]([Id], [Value]) 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 Int) [Id], CAST(NULL AS NVarChar(4000)) [Value] WHERE 1 = 0) [r]([Id], [Value]) ON [t].[Id] = [r].[Id] AND ([t].[Value] = [r].[Value] OR [t].[Value] IS NULL AND [r].[Value] IS NULL)
1010

SqlServer.Contained.MS.LinqService/Tests/Linq/EnumerableSourceTests/Tests.Linq.EnumerableSourceTests.EmptyValues(SqlServer.Contained.MS.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]([Id], [Value]) 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 Int) [Id], CAST(NULL AS NVarChar(4000)) [Value] WHERE 1 = 0) [r]([Id], [Value]) 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)