@@ -292,6 +292,7 @@ def test_client_session_keep_alive_false_by_default(self):
292292 insecure_mode = False ,
293293 session_parameters = {},
294294 reuse_connections = True ,
295+ client_prefetch_threads = 1 ,
295296 ),
296297 ]
297298 )
@@ -325,6 +326,7 @@ def test_client_session_keep_alive_true(self):
325326 insecure_mode = False ,
326327 session_parameters = {},
327328 reuse_connections = None ,
329+ client_prefetch_threads = 1 ,
328330 )
329331 ]
330332 )
@@ -352,6 +354,7 @@ def test_client_has_query_tag(self):
352354 application = "dbt" ,
353355 insecure_mode = False ,
354356 session_parameters = {"QUERY_TAG" : "test_query_tag" },
357+ client_prefetch_threads = 1 ,
355358 )
356359 ]
357360 )
@@ -387,6 +390,7 @@ def test_user_pass_authentication(self):
387390 insecure_mode = False ,
388391 session_parameters = {},
389392 reuse_connections = True ,
393+ client_prefetch_threads = 1 ,
390394 )
391395 ]
392396 )
@@ -421,6 +425,7 @@ def test_authenticator_user_pass_authentication(self):
421425 insecure_mode = False ,
422426 session_parameters = {},
423427 reuse_connections = True ,
428+ client_prefetch_threads = 1 ,
424429 )
425430 ]
426431 )
@@ -451,6 +456,7 @@ def test_authenticator_externalbrowser_authentication(self):
451456 insecure_mode = False ,
452457 session_parameters = {},
453458 reuse_connections = True ,
459+ client_prefetch_threads = 1 ,
454460 )
455461 ]
456462 )
@@ -485,6 +491,7 @@ def test_authenticator_oauth_authentication(self):
485491 insecure_mode = False ,
486492 session_parameters = {},
487493 reuse_connections = True ,
494+ client_prefetch_threads = 1 ,
488495 )
489496 ]
490497 )
@@ -519,6 +526,7 @@ def test_authenticator_private_key_authentication(self, mock_get_private_key):
519526 insecure_mode = False ,
520527 session_parameters = {},
521528 reuse_connections = True ,
529+ client_prefetch_threads = 1 ,
522530 )
523531 ]
524532 )
@@ -553,6 +561,7 @@ def test_authenticator_private_key_authentication_no_passphrase(self, mock_get_p
553561 insecure_mode = False ,
554562 session_parameters = {},
555563 reuse_connections = True ,
564+ client_prefetch_threads = 1 ,
556565 )
557566 ]
558567 )
@@ -585,6 +594,7 @@ def test_authenticator_jwt_authentication(self):
585594 insecure_mode = False ,
586595 session_parameters = {},
587596 reuse_connections = True ,
597+ client_prefetch_threads = 1 ,
588598 )
589599 ]
590600 )
@@ -615,6 +625,7 @@ def test_query_tag(self):
615625 insecure_mode = False ,
616626 session_parameters = {"QUERY_TAG" : "test_query_tag" },
617627 reuse_connections = True ,
628+ client_prefetch_threads = 1 ,
618629 )
619630 ]
620631 )
@@ -644,6 +655,7 @@ def test_reuse_connections_with_keep_alive(self):
644655 insecure_mode = False ,
645656 session_parameters = {},
646657 reuse_connections = True ,
658+ client_prefetch_threads = 1 ,
647659 )
648660 ]
649661 )
@@ -678,6 +690,7 @@ def test_authenticator_private_key_string_authentication(self, mock_get_private_
678690 insecure_mode = False ,
679691 session_parameters = {},
680692 reuse_connections = True ,
693+ client_prefetch_threads = 1 ,
681694 )
682695 ]
683696 )
@@ -714,6 +727,7 @@ def test_authenticator_private_key_string_authentication_no_passphrase(
714727 insecure_mode = False ,
715728 session_parameters = {},
716729 reuse_connections = True ,
730+ client_prefetch_threads = 1 ,
717731 )
718732 ]
719733 )
0 commit comments