Skip to content

Commit

Permalink
Update expected output of databasepropertyex related tests
Browse files Browse the repository at this point in the history
Signed-off-by: Shameem Ahmed <[email protected]>
  • Loading branch information
ahmed-shameem committed Aug 8, 2024
1 parent 9ed216c commit 2e9e8b7
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions test/JDBC/expected/BABEL-2835.out
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ select cast(databasepropertyex('master','collation') as varchar(50))
go
~~START~~
varchar
sql_latin1_general_cp1_ci_as
bbf_unicode_cp1_ci_as
~~END~~

create database mydb
Expand All @@ -20,14 +20,14 @@ SELECT DATABASEPROPERTYEX('mydb', 'Collation')
go
~~START~~
sql_variant
sql_latin1_general_cp1_ci_as
bbf_unicode_cp1_ci_as
~~END~~

SELECT CONVERT(VARCHAR(100), DATABASEPROPERTYEX(DB_NAME(), 'Collation'))
go
~~START~~
varchar
sql_latin1_general_cp1_ci_as
bbf_unicode_cp1_ci_as
~~END~~

use master
Expand Down
2 changes: 1 addition & 1 deletion test/JDBC/expected/BABEL-DATABASEPROPERTYEX.out
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ select databasepropertyex(N'master',N'Collation')
GO
~~START~~
sql_variant
sql_latin1_general_cp1_ci_as
bbf_unicode_cp1_ci_as
~~END~~

select databasepropertyex(N'master',N'IsInStandBy')
Expand Down
2 changes: 1 addition & 1 deletion test/JDBC/expected/babel_databasepropertyex.out
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ select databasepropertyex(N'master',N'Collation');
GO
~~START~~
sql_variant
sql_latin1_general_cp1_ci_as
bbf_unicode_cp1_ci_as
~~END~~

select databasepropertyex(N'master',N'IsInStandBy');
Expand Down

0 comments on commit 2e9e8b7

Please sign in to comment.