Skip to content

Commit

Permalink
update expected output of babel_function in non-default server collat…
Browse files Browse the repository at this point in the history
…ion folder

Signed-off-by: Rohit Bhagat <[email protected]>
  • Loading branch information
Rohit Bhagat committed Jan 3, 2025
1 parent 784f948 commit 3e4bcd4
Showing 1 changed file with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -188,21 +188,21 @@ select CONVERT(varchar(10), CAST(4936.56 AS MONEY), 0);
GO
~~START~~
varchar
4936.56
4936.56
~~END~~

select CONVERT(varchar(10), CAST(4936.56 AS MONEY), 1);
GO
~~START~~
varchar
4,936.56
4,936.56
~~END~~

select CONVERT(varchar(10), CAST(4936.56 AS MONEY), 2);
GO
~~START~~
varchar
4936.5600
4936.5600
~~END~~


Expand All @@ -212,7 +212,7 @@ SELECT CONVERT(int, 99.9);
GO
~~START~~
varchar
-4936.56
-4936.56
~~END~~

~~START~~
Expand Down Expand Up @@ -311,7 +311,7 @@ select TRY_CONVERT(varchar(10), CAST(4936.56 AS MONEY), 0);
GO
~~START~~
varchar
4936.56
4936.56
~~END~~


Expand Down

0 comments on commit 3e4bcd4

Please sign in to comment.