diff --git a/test/JDBC/expected/Test-sp_reset_connection.out b/test/JDBC/expected/Test-sp_reset_connection.out index e4f2b401b5..370524a81f 100644 --- a/test/JDBC/expected/Test-sp_reset_connection.out +++ b/test/JDBC/expected/Test-sp_reset_connection.out @@ -1,5 +1,12 @@ -- tsql -- 1. Test resets GUC variables +SELECT @@lock_timeout; +GO +~~START~~ +int +-1 +~~END~~ + SET lock_timeout 0; GO SELECT @@lock_timeout; @@ -10,12 +17,12 @@ int ~~END~~ EXEC sys.sp_reset_connection --- TODO: GUC is not resetting +GO SELECT @@lock_timeout; GO ~~START~~ int -0 +-1 ~~END~~ diff --git a/test/JDBC/input/storedProcedures/Test-sp_reset_connection.mix b/test/JDBC/input/storedProcedures/Test-sp_reset_connection.mix index cbbeb4dcb2..ff2613caaa 100644 --- a/test/JDBC/input/storedProcedures/Test-sp_reset_connection.mix +++ b/test/JDBC/input/storedProcedures/Test-sp_reset_connection.mix @@ -1,11 +1,13 @@ -- tsql -- 1. Test resets GUC variables +SELECT @@lock_timeout; +GO SET lock_timeout 0; GO SELECT @@lock_timeout; GO EXEC sys.sp_reset_connection --- TODO: GUC is not resetting +GO SELECT @@lock_timeout; GO