Skip to content

Commit 71ea1ee

Browse files
author
Azure Pipelines Bot
committed
[Linux / SQL Server 2025] baselines
1 parent 5463958 commit 71ea1ee

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

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)