Skip to content

Commit d1e7dae

Browse files
author
Azure Pipelines Bot
committed
[Linux / SQL Server 2025] baselines
1 parent 6f3b1e1 commit d1e7dae

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
@@ -25,7 +25,7 @@ FROM
2525
[TypeTable`2] [t1]
2626

2727
-- SqlServer.2025.MS SqlServer.2025 SqlServer.2022
28-
DECLARE @Column 36(16) -- Binary
28+
DECLARE @Column Vector(16) -- Binary
2929
SET @Column = JSON_ARRAY(1.2, -1.1)
3030
DECLARE @ColumnNullable NVarChar -- String
3131
SET @ColumnNullable = NULL
@@ -58,7 +58,7 @@ FROM
5858
[TypeTable`2] [t1]
5959

6060
-- SqlServer.2025.MS SqlServer.2025 SqlServer.2022
61-
DECLARE @p1 36(16) -- Binary
61+
DECLARE @p1 Vector(16) -- Binary
6262
SET @p1 = JSON_ARRAY(1.2, -1.1)
6363
DECLARE @p2 NVarChar -- String
6464
SET @p2 = NULL
@@ -144,7 +144,7 @@ FROM
144144
[TypeTable`2] [t1]
145145

146146
-- SqlServer.2025.MS SqlServer.2025 SqlServer.2022
147-
DECLARE @Column 36(16) -- Binary
147+
DECLARE @Column Vector(16) -- Binary
148148
SET @Column = JSON_ARRAY(5.2, -3.1)
149149
DECLARE @ColumnNullable NVarChar -- String
150150
SET @ColumnNullable = NULL
@@ -177,7 +177,7 @@ FROM
177177
[TypeTable`2] [t1]
178178

179179
-- SqlServer.2025.MS SqlServer.2025 SqlServer.2022
180-
DECLARE @p1 36(16) -- Binary
180+
DECLARE @p1 Vector(16) -- Binary
181181
SET @p1 = JSON_ARRAY(5.2, -3.1)
182182
DECLARE @p2 NVarChar -- String
183183
SET @p2 = NULL
@@ -259,9 +259,9 @@ FROM
259259
[TypeTable`2] [t1]
260260

261261
-- SqlServer.2025.MS SqlServer.2025 SqlServer.2022
262-
DECLARE @Column 36(16) -- Binary
262+
DECLARE @Column Vector(16) -- Binary
263263
SET @Column = JSON_ARRAY(11.2, -4.1)
264-
DECLARE @ColumnNullable 36(16) -- Binary
264+
DECLARE @ColumnNullable Vector(16) -- Binary
265265
SET @ColumnNullable = JSON_ARRAY(5.2, -3.1)
266266

267267
INSERT INTO [TypeTable`2]
@@ -290,9 +290,9 @@ FROM
290290
[TypeTable`2] [t1]
291291

292292
-- SqlServer.2025.MS SqlServer.2025 SqlServer.2022
293-
DECLARE @p1 36(16) -- Binary
293+
DECLARE @p1 Vector(16) -- Binary
294294
SET @p1 = JSON_ARRAY(11.2, -4.1)
295-
DECLARE @p2 36(16) -- Binary
295+
DECLARE @p2 Vector(16) -- Binary
296296
SET @p2 = JSON_ARRAY(5.2, -3.1)
297297

298298
INSERT INTO [TypeTable`2]

0 commit comments

Comments
 (0)