Skip to content

Commit 398f07b

Browse files
author
RUI LUO
committed
fixed whitespaces
1 parent 58dc7ce commit 398f07b

File tree

4 files changed

+8
-4
lines changed

4 files changed

+8
-4
lines changed

test/JDBC/expected/remote-proc-exec-vu-prepare.out

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -192,7 +192,8 @@ AS BEGIN
192192
UNION ALL SELECT 2, 'Bob', 30
193193
UNION ALL SELECT 3, 'Charlie', 35
194194
UNION ALL SELECT 4, 'Diana', 28
195-
UNION ALL SELECT 5, 'Eve', 32;
195+
UNION ALL SELECT 5, 'Eve', 32
196+
ORDER BY id;
196197
END;
197198
GO
198199

@@ -219,7 +220,8 @@ AS BEGIN
219220
SELECT 1 AS id, 'value' AS name, 100 AS amount
220221
UNION ALL SELECT 2, NULL, 200
221222
UNION ALL SELECT 3, 'another', NULL
222-
UNION ALL SELECT 4, NULL, NULL;
223+
UNION ALL SELECT 4, NULL, NULL
224+
ORDER BY id;
223225
END;
224226
GO
225227

test/JDBC/expected/xml_exist-before-16_5-vu-verify.out

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1098,3 +1098,4 @@ GO
10981098
~~ERROR (Code: 33557097)~~
10991099

11001100
~~ERROR (Message: 'XML MODIFY' is not currently supported in Babelfish)~~
1101+

test/JDBC/expected/xml_exist-vu-verify.out

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1286,3 +1286,4 @@ GO
12861286
~~ERROR (Code: 33557097)~~
12871287

12881288
~~ERROR (Message: 'XML MODIFY' is not currently supported in Babelfish)~~
1289+

test/JDBC/expected/xml_value-vu-verify.out

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1353,8 +1353,6 @@ GO
13531353
~~ERROR (Message: The value function requires 2 argument(s).)~~
13541354

13551355

1356-
1357-
13581356
-- value function called on XML Query
13591357
DECLARE @xml XML = '<artists> <artist name="John Doe"/> <artist name="Edward Poe"/> <artist name="Mark The Great"/> </artists>'
13601358
SELECT @xml.query('/artists/artist').value('/artist/@name', 'varchar(100)')
@@ -1796,3 +1794,5 @@ GO
17961794
~~ERROR (Code: 33557097)~~
17971795

17981796
~~ERROR (Message: The value function requires 2 argument(s).)~~
1797+
1798+

0 commit comments

Comments
 (0)