@@ -167,6 +167,9 @@ def __verify_create_arg(self, arg_name, arg_value, sql):
167167 self .assertEqual (fetched_value , arg_value )
168168 pool .close ()
169169
170+ @unittest .skipIf (
171+ test_env .get_client_version () < (19 , 1 ), "not supported on this client"
172+ )
170173 def test_2400 (self ):
171174 "2400 - test getting default pool parameters"
172175 pool = test_env .get_pool ()
@@ -231,6 +234,9 @@ def test_2401(self):
231234 self .assertEqual (user , test_env .get_proxy_user ().upper ())
232235 conn .close ()
233236
237+ @unittest .skipIf (
238+ test_env .get_client_version () < (19 , 1 ), "not supported on this client"
239+ )
234240 def test_2402 (self ):
235241 "2402 - test setting pool attributes"
236242 pool = test_env .get_pool ()
@@ -670,6 +676,9 @@ def test_2421(self):
670676 with self .assertRaisesFullCode ("DPY-1002" ):
671677 pool .acquire ()
672678
679+ @unittest .skipIf (
680+ test_env .get_client_version () < (19 , 1 ), "not supported on this client"
681+ )
673682 def test_2422 (self ):
674683 "2422 - using the pool beyond max limit raises an error"
675684 pool = test_env .get_pool (
@@ -857,7 +866,7 @@ def test_2437(self):
857866 test_env .get_server_version () < (12 , 2 ), "not supported on this server"
858867 )
859868 @unittest .skipIf (
860- test_env .get_client_version () < (12 , 2 ), "not supported on this client"
869+ test_env .get_client_version () < (19 , 1 ), "not supported on this client"
861870 )
862871 def test_2438 (self ):
863872 "2438 - ensure that timed wait times out with appropriate exception"
@@ -867,6 +876,9 @@ def test_2438(self):
867876 with self .assertRaisesFullCode ("DPY-4005" ):
868877 pool .acquire ()
869878
879+ @unittest .skipIf (
880+ test_env .get_client_version () < (18 , 1 ), "not supported on this client"
881+ )
870882 def test_2439 (self ):
871883 "2439 - ensure call timeout is reset on connections returned by pool"
872884 pool = test_env .get_pool (ping_timeout = 1000 , ping_interval = 0 )
0 commit comments