Skip to content

Commit 029f920

Browse files
author
Azure Pipelines Bot
committed
[Linux / SQL Server 2025] baselines
1 parent e2f6279 commit 029f920

File tree

3 files changed

+14
-14
lines changed

3 files changed

+14
-14
lines changed

SqlServer.2025.MS.EF10/LinqToDB/EntityFrameworkCore/Tests/IssueTests/LinqToDB.EntityFrameworkCore.Tests.IssueTests.Issue4626Test2(SqlServer.2025.MS).sql

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,15 +5,15 @@
55
SELECT
66
[m_1].[Id],
77
[d_1].[Key_1],
8-
[d_1].[SUM_1],
9-
[d_1].[ToValue]
8+
[d_1].[Sum_1],
9+
[d_1].[ConcatStringsNullable]
1010
FROM
1111
[Parents] [m_1]
1212
CROSS APPLY (
1313
SELECT
1414
[d].[ParentId] as [Key_1],
15-
SUM([d].[Id]) as [SUM_1],
16-
STRING_AGG([d].[Name], N', ') as [ToValue]
15+
SUM([d].[Id]) as [Sum_1],
16+
STRING_AGG([d].[Name], N', ') as [ConcatStringsNullable]
1717
FROM
1818
[Children] [d]
1919
WHERE

SqlServer.2025.MS.EF10/LinqToDB/EntityFrameworkCore/Tests/IssueTests/LinqToDB.EntityFrameworkCore.Tests.IssueTests.Issue4629Test(SqlServer.2025.MS).sql

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ FROM
2020
[Issue4629Tags] [a_Tags]
2121
WHERE
2222
[p].[Id] = [a_Tags].[PostId]
23-
) as [SUM_1]
23+
) as [Sum_1]
2424
FROM
2525
[Issue4629Posts] [p]
2626
) [t1]
@@ -34,7 +34,7 @@ FROM
3434
[t1].[Id] = [a_Tags_1].[PostId] AND [a_Tags_1].[Weight] > 1
3535
) > 5
3636
ORDER BY
37-
[t1].[SUM_1]
37+
[t1].[Sum_1]
3838
) [id]
3939

4040

SqlServer.2025.MS/Tests/DataProvider/SqlServerTypeTests/Tests.DataProvider.SqlServerTypeTests.TestVectorType(SqlServer.2025.MS).sql

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ FROM
2929
-- SqlServer.2025.MS SqlServer.2025 SqlServer.2022
3030
DECLARE @Id Int -- Int32
3131
SET @Id = 1
32-
DECLARE @Column 36(16) -- Binary
32+
DECLARE @Column Vector(16) -- Binary
3333
SET @Column = JSON_ARRAY(1.2, -1.1)
3434
DECLARE @ColumnNullable NVarChar -- String
3535
SET @ColumnNullable = NULL
@@ -67,7 +67,7 @@ FROM
6767
-- SqlServer.2025.MS SqlServer.2025 SqlServer.2022
6868
DECLARE @p1 Int -- Int32
6969
SET @p1 = 1
70-
DECLARE @p2 36(16) -- Binary
70+
DECLARE @p2 Vector(16) -- Binary
7171
SET @p2 = JSON_ARRAY(1.2, -1.1)
7272
DECLARE @p3 NVarChar -- String
7373
SET @p3 = NULL
@@ -161,7 +161,7 @@ FROM
161161
-- SqlServer.2025.MS SqlServer.2025 SqlServer.2022
162162
DECLARE @Id Int -- Int32
163163
SET @Id = 1
164-
DECLARE @Column 36(16) -- Binary
164+
DECLARE @Column Vector(16) -- Binary
165165
SET @Column = JSON_ARRAY(5.2, -3.1)
166166
DECLARE @ColumnNullable NVarChar -- String
167167
SET @ColumnNullable = NULL
@@ -199,7 +199,7 @@ FROM
199199
-- SqlServer.2025.MS SqlServer.2025 SqlServer.2022
200200
DECLARE @p1 Int -- Int32
201201
SET @p1 = 1
202-
DECLARE @p2 36(16) -- Binary
202+
DECLARE @p2 Vector(16) -- Binary
203203
SET @p2 = JSON_ARRAY(5.2, -3.1)
204204
DECLARE @p3 NVarChar -- String
205205
SET @p3 = NULL
@@ -289,9 +289,9 @@ FROM
289289
-- SqlServer.2025.MS SqlServer.2025 SqlServer.2022
290290
DECLARE @Id Int -- Int32
291291
SET @Id = 1
292-
DECLARE @Column 36(16) -- Binary
292+
DECLARE @Column Vector(16) -- Binary
293293
SET @Column = JSON_ARRAY(11.2, -4.1)
294-
DECLARE @ColumnNullable 36(16) -- Binary
294+
DECLARE @ColumnNullable Vector(16) -- Binary
295295
SET @ColumnNullable = JSON_ARRAY(5.2, -3.1)
296296

297297
INSERT INTO [TypeTable`2]
@@ -325,9 +325,9 @@ FROM
325325
-- SqlServer.2025.MS SqlServer.2025 SqlServer.2022
326326
DECLARE @p1 Int -- Int32
327327
SET @p1 = 1
328-
DECLARE @p2 36(16) -- Binary
328+
DECLARE @p2 Vector(16) -- Binary
329329
SET @p2 = JSON_ARRAY(11.2, -4.1)
330-
DECLARE @p3 36(16) -- Binary
330+
DECLARE @p3 Vector(16) -- Binary
331331
SET @p3 = JSON_ARRAY(5.2, -3.1)
332332

333333
INSERT INTO [TypeTable`2]

0 commit comments

Comments
 (0)