snowflake-connector-python 5.0.0b1__tar.gz → 5.0.0b2__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (350) hide show
  1. {snowflake_connector_python-5.0.0b1 → snowflake_connector_python-5.0.0b2}/Cargo.lock +221 -7
  2. {snowflake_connector_python-5.0.0b1 → snowflake_connector_python-5.0.0b2}/PKG-INFO +15 -9
  3. {snowflake_connector_python-5.0.0b1 → snowflake_connector_python-5.0.0b2}/README.md +12 -6
  4. {snowflake_connector_python-5.0.0b1 → snowflake_connector_python-5.0.0b2}/protobuf/database_driver_v1.proto +55 -46
  5. {snowflake_connector_python-5.0.0b1 → snowflake_connector_python-5.0.0b2}/pyproject.toml +52 -10
  6. {snowflake_connector_python-5.0.0b1 → snowflake_connector_python-5.0.0b2}/sf_core/Cargo.toml +18 -4
  7. {snowflake_connector_python-5.0.0b1 → snowflake_connector_python-5.0.0b2}/sf_core/README.md +28 -0
  8. {snowflake_connector_python-5.0.0b1 → snowflake_connector_python-5.0.0b2}/sf_core/benches/prefetch_bench.rs +11 -3
  9. {snowflake_connector_python-5.0.0b1 → snowflake_connector_python-5.0.0b2}/sf_core/src/apis/database_driver_v1/connection.rs +373 -90
  10. {snowflake_connector_python-5.0.0b1 → snowflake_connector_python-5.0.0b2}/sf_core/src/apis/database_driver_v1/error.rs +11 -6
  11. {snowflake_connector_python-5.0.0b1 → snowflake_connector_python-5.0.0b2}/sf_core/src/apis/database_driver_v1/global_state.rs +63 -0
  12. {snowflake_connector_python-5.0.0b1 → snowflake_connector_python-5.0.0b2}/sf_core/src/apis/database_driver_v1/heartbeat.rs +56 -20
  13. snowflake_connector_python-5.0.0b2/sf_core/src/apis/database_driver_v1/mod.rs +35 -0
  14. {snowflake_connector_python-5.0.0b1 → snowflake_connector_python-5.0.0b2}/sf_core/src/apis/database_driver_v1/multistatement.rs +16 -0
  15. snowflake_connector_python-5.0.0b2/sf_core/src/apis/database_driver_v1/query.rs +831 -0
  16. snowflake_connector_python-5.0.0b2/sf_core/src/apis/database_driver_v1/result_set.rs +463 -0
  17. {snowflake_connector_python-5.0.0b1 → snowflake_connector_python-5.0.0b2}/sf_core/src/apis/database_driver_v1/statement.rs +100 -565
  18. {snowflake_connector_python-5.0.0b1 → snowflake_connector_python-5.0.0b2}/sf_core/src/apis/database_driver_v1/validation.rs +2 -2
  19. {snowflake_connector_python-5.0.0b1 → snowflake_connector_python-5.0.0b2}/sf_core/src/arrow_utils.rs +37 -16
  20. {snowflake_connector_python-5.0.0b1 → snowflake_connector_python-5.0.0b2}/sf_core/src/auth.rs +31 -3
  21. {snowflake_connector_python-5.0.0b1 → snowflake_connector_python-5.0.0b2}/sf_core/src/bin/collect_chunk_data.rs +7 -16
  22. snowflake_connector_python-5.0.0b2/sf_core/src/bin/param_defs_export.rs +395 -0
  23. {snowflake_connector_python-5.0.0b1 → snowflake_connector_python-5.0.0b2}/sf_core/src/chunks/json_parser.rs +289 -10
  24. snowflake_connector_python-5.0.0b2/sf_core/src/chunks/memory_budget.rs +134 -0
  25. {snowflake_connector_python-5.0.0b1 → snowflake_connector_python-5.0.0b2}/sf_core/src/chunks/mod.rs +52 -5
  26. snowflake_connector_python-5.0.0b2/sf_core/src/chunks/prefetch.rs +211 -0
  27. {snowflake_connector_python-5.0.0b1 → snowflake_connector_python-5.0.0b2}/sf_core/src/config/connection_config.rs +561 -24
  28. {snowflake_connector_python-5.0.0b1 → snowflake_connector_python-5.0.0b2}/sf_core/src/config/mod.rs +2 -0
  29. {snowflake_connector_python-5.0.0b1 → snowflake_connector_python-5.0.0b2}/sf_core/src/config/param_registry.rs +352 -4
  30. {snowflake_connector_python-5.0.0b1 → snowflake_connector_python-5.0.0b2}/sf_core/src/config/param_store.rs +7 -7
  31. {snowflake_connector_python-5.0.0b1 → snowflake_connector_python-5.0.0b2}/sf_core/src/config/resolver.rs +94 -10
  32. snowflake_connector_python-5.0.0b2/sf_core/src/config/rest_parameters.rs +1675 -0
  33. {snowflake_connector_python-5.0.0b1 → snowflake_connector_python-5.0.0b2}/sf_core/src/crl/integration_test.rs +1 -1
  34. {snowflake_connector_python-5.0.0b1 → snowflake_connector_python-5.0.0b2}/sf_core/src/file_manager/azure_transfer.rs +28 -15
  35. {snowflake_connector_python-5.0.0b1 → snowflake_connector_python-5.0.0b2}/sf_core/src/file_manager/gcs_transfer.rs +27 -14
  36. snowflake_connector_python-5.0.0b2/sf_core/src/file_manager/mod.rs +672 -0
  37. snowflake_connector_python-5.0.0b2/sf_core/src/file_manager/s3_transfer.rs +933 -0
  38. {snowflake_connector_python-5.0.0b1 → snowflake_connector_python-5.0.0b2}/sf_core/src/file_manager/types.rs +144 -4
  39. {snowflake_connector_python-5.0.0b1 → snowflake_connector_python-5.0.0b2}/sf_core/src/logging/c_api.rs +6 -3
  40. {snowflake_connector_python-5.0.0b1 → snowflake_connector_python-5.0.0b2}/sf_core/src/logging/ini_config.rs +134 -1
  41. {snowflake_connector_python-5.0.0b1 → snowflake_connector_python-5.0.0b2}/sf_core/src/logging/log_manager.rs +81 -0
  42. {snowflake_connector_python-5.0.0b1 → snowflake_connector_python-5.0.0b2}/sf_core/src/logging/mod.rs +14 -0
  43. {snowflake_connector_python-5.0.0b1 → snowflake_connector_python-5.0.0b2}/sf_core/src/protobuf/apis/database_driver_v1/converter.rs +195 -59
  44. {snowflake_connector_python-5.0.0b1 → snowflake_connector_python-5.0.0b2}/sf_core/src/protobuf/apis/database_driver_v1/mod.rs +101 -144
  45. {snowflake_connector_python-5.0.0b1 → snowflake_connector_python-5.0.0b2}/sf_core/src/protobuf/c_api.rs +3 -2
  46. {snowflake_connector_python-5.0.0b1 → snowflake_connector_python-5.0.0b2}/sf_core/src/query_types.rs +46 -3
  47. {snowflake_connector_python-5.0.0b1 → snowflake_connector_python-5.0.0b2}/sf_core/src/rest/snowflake/async_exec.rs +50 -38
  48. {snowflake_connector_python-5.0.0b1 → snowflake_connector_python-5.0.0b2}/sf_core/src/rest/snowflake/auth.rs +8 -9
  49. snowflake_connector_python-5.0.0b2/sf_core/src/rest/snowflake/external_browser.rs +792 -0
  50. {snowflake_connector_python-5.0.0b1 → snowflake_connector_python-5.0.0b2}/sf_core/src/rest/snowflake/heartbeat.rs +4 -9
  51. {snowflake_connector_python-5.0.0b1 → snowflake_connector_python-5.0.0b2}/sf_core/src/rest/snowflake/logout.rs +4 -1
  52. {snowflake_connector_python-5.0.0b1 → snowflake_connector_python-5.0.0b2}/sf_core/src/rest/snowflake/mod.rs +597 -47
  53. {snowflake_connector_python-5.0.0b1 → snowflake_connector_python-5.0.0b2}/sf_core/src/rest/snowflake/native_okta.rs +4 -20
  54. snowflake_connector_python-5.0.0b2/sf_core/src/rest/snowflake/oauth/authorization_code.rs +1515 -0
  55. snowflake_connector_python-5.0.0b2/sf_core/src/rest/snowflake/oauth/client_credentials.rs +258 -0
  56. snowflake_connector_python-5.0.0b2/sf_core/src/rest/snowflake/oauth/dpop.rs +404 -0
  57. snowflake_connector_python-5.0.0b2/sf_core/src/rest/snowflake/oauth/error.rs +298 -0
  58. snowflake_connector_python-5.0.0b2/sf_core/src/rest/snowflake/oauth/http_client.rs +184 -0
  59. snowflake_connector_python-5.0.0b2/sf_core/src/rest/snowflake/oauth/loopback_server.rs +589 -0
  60. snowflake_connector_python-5.0.0b2/sf_core/src/rest/snowflake/oauth/mod.rs +46 -0
  61. snowflake_connector_python-5.0.0b2/sf_core/src/rest/snowflake/oauth/pkce.rs +105 -0
  62. snowflake_connector_python-5.0.0b2/sf_core/src/rest/snowflake/oauth/token.rs +535 -0
  63. {snowflake_connector_python-5.0.0b1 → snowflake_connector_python-5.0.0b2}/sf_core/src/rest/snowflake/query_response.rs +498 -106
  64. {snowflake_connector_python-5.0.0b1 → snowflake_connector_python-5.0.0b2}/sf_core/src/rest/snowflake/telemetry.rs +4 -7
  65. {snowflake_connector_python-5.0.0b1 → snowflake_connector_python-5.0.0b2}/sf_core/src/telemetry/mod.rs +8 -14
  66. {snowflake_connector_python-5.0.0b1 → snowflake_connector_python-5.0.0b2}/sf_core/src/telemetry/snowflake_exporter.rs +3 -0
  67. {snowflake_connector_python-5.0.0b1 → snowflake_connector_python-5.0.0b2}/sf_core/src/tls/client.rs +37 -16
  68. {snowflake_connector_python-5.0.0b1 → snowflake_connector_python-5.0.0b2}/sf_core/src/tls/crl_verifier.rs +131 -16
  69. {snowflake_connector_python-5.0.0b1 → snowflake_connector_python-5.0.0b2}/sf_core/src/tls/mod.rs +1 -1
  70. {snowflake_connector_python-5.0.0b1 → snowflake_connector_python-5.0.0b2}/sf_core/src/token_cache/file_cache.rs +4 -1
  71. {snowflake_connector_python-5.0.0b1 → snowflake_connector_python-5.0.0b2}/sf_core/src/token_cache/keyring_cache.rs +47 -4
  72. {snowflake_connector_python-5.0.0b1 → snowflake_connector_python-5.0.0b2}/sf_core/src/token_cache/mod.rs +4 -2
  73. {snowflake_connector_python-5.0.0b1 → snowflake_connector_python-5.0.0b2}/sf_core/tests/common/arrow_result_helper.rs +3 -3
  74. {snowflake_connector_python-5.0.0b1 → snowflake_connector_python-5.0.0b2}/sf_core/tests/common/config.rs +14 -0
  75. snowflake_connector_python-5.0.0b2/sf_core/tests/common/mocks/auth.rs +66 -0
  76. snowflake_connector_python-5.0.0b2/sf_core/tests/common/mocks/external_browser.rs +109 -0
  77. {snowflake_connector_python-5.0.0b1 → snowflake_connector_python-5.0.0b2}/sf_core/tests/common/mocks/mod.rs +2 -0
  78. snowflake_connector_python-5.0.0b2/sf_core/tests/common/mocks/oauth.rs +251 -0
  79. {snowflake_connector_python-5.0.0b1 → snowflake_connector_python-5.0.0b2}/sf_core/tests/common/put_get_common.rs +4 -4
  80. {snowflake_connector_python-5.0.0b1 → snowflake_connector_python-5.0.0b2}/sf_core/tests/common/snowflake_test_client.rs +56 -21
  81. {snowflake_connector_python-5.0.0b1 → snowflake_connector_python-5.0.0b2}/src/snowflake/connector/__init__.py +17 -3
  82. snowflake_connector_python-5.0.0b2/src/snowflake/connector/_internal/api_client/__init__.py +12 -0
  83. snowflake_connector_python-5.0.0b2/src/snowflake/connector/_internal/api_client/client_api.py +556 -0
  84. {snowflake_connector_python-5.0.0b1 → snowflake_connector_python-5.0.0b2}/src/snowflake/connector/_internal/arrow_context.py +12 -8
  85. {snowflake_connector_python-5.0.0b1 → snowflake_connector_python-5.0.0b2}/src/snowflake/connector/_internal/arrow_stream_utils.py +7 -4
  86. {snowflake_connector_python-5.0.0b1 → snowflake_connector_python-5.0.0b2}/src/snowflake/connector/_internal/backward_compatibility.py +2 -1
  87. {snowflake_connector_python-5.0.0b1 → snowflake_connector_python-5.0.0b2}/src/snowflake/connector/_internal/binding_converters.py +14 -3
  88. snowflake_connector_python-5.0.0b2/src/snowflake/connector/_internal/connection_config_mixin.py +414 -0
  89. {snowflake_connector_python-5.0.0b1 → snowflake_connector_python-5.0.0b2}/src/snowflake/connector/_internal/decorators.py +67 -2
  90. {snowflake_connector_python-5.0.0b1 → snowflake_connector_python-5.0.0b2}/src/snowflake/connector/_internal/errorhandler.py +2 -1
  91. {snowflake_connector_python-5.0.0b1 → snowflake_connector_python-5.0.0b2}/src/snowflake/connector/_internal/extras.py +2 -1
  92. snowflake_connector_python-5.0.0b2/src/snowflake/connector/_internal/freezable_proxy.py +86 -0
  93. {snowflake_connector_python-5.0.0b1 → snowflake_connector_python-5.0.0b2}/src/snowflake/connector/_internal/logging.py +38 -17
  94. {snowflake_connector_python-5.0.0b1 → snowflake_connector_python-5.0.0b2}/src/snowflake/connector/_internal/logout_config_mapping.py +38 -10
  95. snowflake_connector_python-5.0.0b2/src/snowflake/connector/_internal/protobuf_gen/database_driver_v1_pb2.py +336 -0
  96. {snowflake_connector_python-5.0.0b1 → snowflake_connector_python-5.0.0b2}/src/snowflake/connector/_internal/protobuf_gen/database_driver_v1_pb2.pyi +195 -131
  97. {snowflake_connector_python-5.0.0b1 → snowflake_connector_python-5.0.0b2}/src/snowflake/connector/_internal/protobuf_gen/database_driver_v1_services.py +46 -27
  98. {snowflake_connector_python-5.0.0b1 → snowflake_connector_python-5.0.0b2}/src/snowflake/connector/_internal/snow_logging.py +10 -0
  99. {snowflake_connector_python-5.0.0b1 → snowflake_connector_python-5.0.0b2}/src/snowflake/connector/_internal/snowflake_restful.py +6 -11
  100. {snowflake_connector_python-5.0.0b1 → snowflake_connector_python-5.0.0b2}/src/snowflake/connector/_internal/statement_utils.py +9 -33
  101. {snowflake_connector_python-5.0.0b1 → snowflake_connector_python-5.0.0b2}/src/snowflake/connector/_internal/telemetry.py +9 -18
  102. {snowflake_connector_python-5.0.0b1 → snowflake_connector_python-5.0.0b2}/src/snowflake/connector/_internal/write_pandas_operation.py +2 -2
  103. {snowflake_connector_python-5.0.0b1 → snowflake_connector_python-5.0.0b2}/src/snowflake/connector/config_manager.py +8 -13
  104. {snowflake_connector_python-5.0.0b1 → snowflake_connector_python-5.0.0b2}/src/snowflake/connector/connection.py +166 -298
  105. snowflake_connector_python-5.0.0b2/src/snowflake/connector/connection_config.py +265 -0
  106. {snowflake_connector_python-5.0.0b1 → snowflake_connector_python-5.0.0b2}/src/snowflake/connector/cursor/__init__.py +2 -6
  107. {snowflake_connector_python-5.0.0b1 → snowflake_connector_python-5.0.0b2}/src/snowflake/connector/cursor/_base.py +75 -169
  108. {snowflake_connector_python-5.0.0b1 → snowflake_connector_python-5.0.0b2}/src/snowflake/connector/cursor/_dict_cursor.py +2 -0
  109. {snowflake_connector_python-5.0.0b1 → snowflake_connector_python-5.0.0b2}/src/snowflake/connector/cursor/_query_result.py +10 -50
  110. snowflake_connector_python-5.0.0b2/src/snowflake/connector/cursor/_result_set_wrapper.py +85 -0
  111. {snowflake_connector_python-5.0.0b1 → snowflake_connector_python-5.0.0b2}/src/snowflake/connector/cursor/_snowflake_cursor.py +2 -0
  112. {snowflake_connector_python-5.0.0b1 → snowflake_connector_python-5.0.0b2}/src/snowflake/connector/pandas_tools.py +2 -2
  113. {snowflake_connector_python-5.0.0b1 → snowflake_connector_python-5.0.0b2}/src/snowflake/connector/result_batch.py +5 -5
  114. {snowflake_connector_python-5.0.0b1 → snowflake_connector_python-5.0.0b2}/src/snowflake/connector/types.py +2 -2
  115. {snowflake_connector_python-5.0.0b1 → snowflake_connector_python-5.0.0b2}/src/snowflake/connector/version.py +1 -1
  116. {snowflake_connector_python-5.0.0b1 → snowflake_connector_python-5.0.0b2}/tests/README.md +5 -5
  117. snowflake_connector_python-5.0.0b1/sf_core/src/apis/database_driver_v1/mod.rs +0 -27
  118. snowflake_connector_python-5.0.0b1/sf_core/src/apis/database_driver_v1/query.rs +0 -506
  119. snowflake_connector_python-5.0.0b1/sf_core/src/chunks/prefetch.rs +0 -152
  120. snowflake_connector_python-5.0.0b1/sf_core/src/config/rest_parameters.rs +0 -845
  121. snowflake_connector_python-5.0.0b1/sf_core/src/file_manager/mod.rs +0 -356
  122. snowflake_connector_python-5.0.0b1/sf_core/src/file_manager/s3_transfer.rs +0 -285
  123. snowflake_connector_python-5.0.0b1/sf_core/tests/common/mocks/auth.rs +0 -32
  124. snowflake_connector_python-5.0.0b1/src/snowflake/connector/_internal/api_client/__init__.py +0 -6
  125. snowflake_connector_python-5.0.0b1/src/snowflake/connector/_internal/api_client/client_api.py +0 -224
  126. snowflake_connector_python-5.0.0b1/src/snowflake/connector/_internal/protobuf_gen/database_driver_v1_pb2.py +0 -326
  127. {snowflake_connector_python-5.0.0b1 → snowflake_connector_python-5.0.0b2}/.gitignore +0 -0
  128. {snowflake_connector_python-5.0.0b1 → snowflake_connector_python-5.0.0b2}/Cargo.toml +0 -0
  129. {snowflake_connector_python-5.0.0b1 → snowflake_connector_python-5.0.0b2}/build_common.rs +0 -0
  130. {snowflake_connector_python-5.0.0b1 → snowflake_connector_python-5.0.0b2}/error_trace/Cargo.toml +0 -0
  131. {snowflake_connector_python-5.0.0b1 → snowflake_connector_python-5.0.0b2}/error_trace/src/lib.rs +0 -0
  132. {snowflake_connector_python-5.0.0b1 → snowflake_connector_python-5.0.0b2}/error_trace_derive/Cargo.toml +0 -0
  133. {snowflake_connector_python-5.0.0b1 → snowflake_connector_python-5.0.0b2}/error_trace_derive/src/lib.rs +0 -0
  134. {snowflake_connector_python-5.0.0b1 → snowflake_connector_python-5.0.0b2}/hatch_build.py +0 -0
  135. {snowflake_connector_python-5.0.0b1 → snowflake_connector_python-5.0.0b2}/proto_generator/Cargo.lock +0 -0
  136. {snowflake_connector_python-5.0.0b1 → snowflake_connector_python-5.0.0b2}/proto_generator/Cargo.toml +0 -0
  137. {snowflake_connector_python-5.0.0b1 → snowflake_connector_python-5.0.0b2}/proto_generator/README.md +0 -0
  138. {snowflake_connector_python-5.0.0b1 → snowflake_connector_python-5.0.0b2}/proto_generator/src/generator.rs +0 -0
  139. {snowflake_connector_python-5.0.0b1 → snowflake_connector_python-5.0.0b2}/proto_generator/src/generators/helpers.rs +0 -0
  140. {snowflake_connector_python-5.0.0b1 → snowflake_connector_python-5.0.0b2}/proto_generator/src/generators/java_generator.rs +0 -0
  141. {snowflake_connector_python-5.0.0b1 → snowflake_connector_python-5.0.0b2}/proto_generator/src/generators/json_generator.rs +0 -0
  142. {snowflake_connector_python-5.0.0b1 → snowflake_connector_python-5.0.0b2}/proto_generator/src/generators/mod.rs +0 -0
  143. {snowflake_connector_python-5.0.0b1 → snowflake_connector_python-5.0.0b2}/proto_generator/src/generators/python_generator.rs +0 -0
  144. {snowflake_connector_python-5.0.0b1 → snowflake_connector_python-5.0.0b2}/proto_generator/src/generators/rust_generator.rs +0 -0
  145. {snowflake_connector_python-5.0.0b1 → snowflake_connector_python-5.0.0b2}/proto_generator/src/lib.rs +0 -0
  146. {snowflake_connector_python-5.0.0b1 → snowflake_connector_python-5.0.0b2}/proto_generator/src/main.rs +0 -0
  147. {snowflake_connector_python-5.0.0b1 → snowflake_connector_python-5.0.0b2}/proto_generator/src/protobuf.rs +0 -0
  148. {snowflake_connector_python-5.0.0b1 → snowflake_connector_python-5.0.0b2}/proto_generator/src/protoc_installer.rs +0 -0
  149. {snowflake_connector_python-5.0.0b1 → snowflake_connector_python-5.0.0b2}/proto_utils/Cargo.toml +0 -0
  150. {snowflake_connector_python-5.0.0b1 → snowflake_connector_python-5.0.0b2}/proto_utils/src/lib.rs +0 -0
  151. {snowflake_connector_python-5.0.0b1 → snowflake_connector_python-5.0.0b2}/sf_core/build.rs +0 -0
  152. {snowflake_connector_python-5.0.0b1 → snowflake_connector_python-5.0.0b2}/sf_core/exports.def +0 -0
  153. {snowflake_connector_python-5.0.0b1 → snowflake_connector_python-5.0.0b2}/sf_core/src/apis/database_driver_v1/alter_session_parser.rs +0 -0
  154. {snowflake_connector_python-5.0.0b1 → snowflake_connector_python-5.0.0b2}/sf_core/src/apis/database_driver_v1/async_query_registry.rs +0 -0
  155. {snowflake_connector_python-5.0.0b1 → snowflake_connector_python-5.0.0b2}/sf_core/src/apis/database_driver_v1/database.rs +0 -0
  156. {snowflake_connector_python-5.0.0b1 → snowflake_connector_python-5.0.0b2}/sf_core/src/apis/database_driver_v1/logout.rs +0 -0
  157. {snowflake_connector_python-5.0.0b1 → snowflake_connector_python-5.0.0b2}/sf_core/src/apis/database_driver_v1/spcs_token.rs +0 -0
  158. {snowflake_connector_python-5.0.0b1 → snowflake_connector_python-5.0.0b2}/sf_core/src/apis/mod.rs +0 -0
  159. {snowflake_connector_python-5.0.0b1 → snowflake_connector_python-5.0.0b2}/sf_core/src/bin/README.md +0 -0
  160. {snowflake_connector_python-5.0.0b1 → snowflake_connector_python-5.0.0b2}/sf_core/src/bin/tls_client.rs +0 -0
  161. {snowflake_connector_python-5.0.0b1 → snowflake_connector_python-5.0.0b2}/sf_core/src/c_api.rs +0 -0
  162. {snowflake_connector_python-5.0.0b1 → snowflake_connector_python-5.0.0b2}/sf_core/src/chunks/arrow_parser.rs +0 -0
  163. {snowflake_connector_python-5.0.0b1 → snowflake_connector_python-5.0.0b2}/sf_core/src/chunks/error.rs +0 -0
  164. {snowflake_connector_python-5.0.0b1 → snowflake_connector_python-5.0.0b2}/sf_core/src/chunks/http_downloader.rs +0 -0
  165. {snowflake_connector_python-5.0.0b1 → snowflake_connector_python-5.0.0b2}/sf_core/src/chunks/mock.rs +0 -0
  166. {snowflake_connector_python-5.0.0b1 → snowflake_connector_python-5.0.0b2}/sf_core/src/compression.rs +0 -0
  167. {snowflake_connector_python-5.0.0b1 → snowflake_connector_python-5.0.0b2}/sf_core/src/compression_types.rs +0 -0
  168. {snowflake_connector_python-5.0.0b1 → snowflake_connector_python-5.0.0b2}/sf_core/src/config/config_manager.rs +0 -0
  169. {snowflake_connector_python-5.0.0b1 → snowflake_connector_python-5.0.0b2}/sf_core/src/config/logout.rs +0 -0
  170. {snowflake_connector_python-5.0.0b1 → snowflake_connector_python-5.0.0b2}/sf_core/src/config/path_resolver.rs +0 -0
  171. {snowflake_connector_python-5.0.0b1 → snowflake_connector_python-5.0.0b2}/sf_core/src/config/retry.rs +0 -0
  172. {snowflake_connector_python-5.0.0b1 → snowflake_connector_python-5.0.0b2}/sf_core/src/config/settings.rs +0 -0
  173. {snowflake_connector_python-5.0.0b1 → snowflake_connector_python-5.0.0b2}/sf_core/src/config/toml_loader.rs +0 -0
  174. {snowflake_connector_python-5.0.0b1 → snowflake_connector_python-5.0.0b2}/sf_core/src/crl/cache.rs +0 -0
  175. {snowflake_connector_python-5.0.0b1 → snowflake_connector_python-5.0.0b2}/sf_core/src/crl/certificate_parser.rs +0 -0
  176. {snowflake_connector_python-5.0.0b1 → snowflake_connector_python-5.0.0b2}/sf_core/src/crl/config.rs +0 -0
  177. {snowflake_connector_python-5.0.0b1 → snowflake_connector_python-5.0.0b2}/sf_core/src/crl/disk_tests.rs +0 -0
  178. {snowflake_connector_python-5.0.0b1 → snowflake_connector_python-5.0.0b2}/sf_core/src/crl/error.rs +0 -0
  179. {snowflake_connector_python-5.0.0b1 → snowflake_connector_python-5.0.0b2}/sf_core/src/crl/mod.rs +0 -0
  180. {snowflake_connector_python-5.0.0b1 → snowflake_connector_python-5.0.0b2}/sf_core/src/crl/validator.rs +0 -0
  181. {snowflake_connector_python-5.0.0b1 → snowflake_connector_python-5.0.0b2}/sf_core/src/crl/worker.rs +0 -0
  182. {snowflake_connector_python-5.0.0b1 → snowflake_connector_python-5.0.0b2}/sf_core/src/file_manager/encryption.rs +0 -0
  183. {snowflake_connector_python-5.0.0b1 → snowflake_connector_python-5.0.0b2}/sf_core/src/file_manager/path_expansion.rs +0 -0
  184. {snowflake_connector_python-5.0.0b1 → snowflake_connector_python-5.0.0b2}/sf_core/src/fs_adapter.rs +0 -0
  185. {snowflake_connector_python-5.0.0b1 → snowflake_connector_python-5.0.0b2}/sf_core/src/handle_manager.rs +0 -0
  186. {snowflake_connector_python-5.0.0b1 → snowflake_connector_python-5.0.0b2}/sf_core/src/http/mod.rs +0 -0
  187. {snowflake_connector_python-5.0.0b1 → snowflake_connector_python-5.0.0b2}/sf_core/src/http/retry.rs +0 -0
  188. {snowflake_connector_python-5.0.0b1 → snowflake_connector_python-5.0.0b2}/sf_core/src/lib.rs +0 -0
  189. {snowflake_connector_python-5.0.0b1 → snowflake_connector_python-5.0.0b2}/sf_core/src/logging/callback_layer.rs +0 -0
  190. {snowflake_connector_python-5.0.0b1 → snowflake_connector_python-5.0.0b2}/sf_core/src/logging/error.rs +0 -0
  191. {snowflake_connector_python-5.0.0b1 → snowflake_connector_python-5.0.0b2}/sf_core/src/logging/opentelemetry.rs +0 -0
  192. {snowflake_connector_python-5.0.0b1 → snowflake_connector_python-5.0.0b2}/sf_core/src/perf_timing/c_api.rs +0 -0
  193. {snowflake_connector_python-5.0.0b1 → snowflake_connector_python-5.0.0b2}/sf_core/src/perf_timing/mod.rs +0 -0
  194. {snowflake_connector_python-5.0.0b1 → snowflake_connector_python-5.0.0b2}/sf_core/src/protobuf/apis/mod.rs +0 -0
  195. {snowflake_connector_python-5.0.0b1 → snowflake_connector_python-5.0.0b2}/sf_core/src/protobuf/config_setting_ext.rs +0 -0
  196. {snowflake_connector_python-5.0.0b1 → snowflake_connector_python-5.0.0b2}/sf_core/src/protobuf/generated.rs +0 -0
  197. {snowflake_connector_python-5.0.0b1 → snowflake_connector_python-5.0.0b2}/sf_core/src/protobuf/mod.rs +0 -0
  198. {snowflake_connector_python-5.0.0b1 → snowflake_connector_python-5.0.0b2}/sf_core/src/rest/mod.rs +0 -0
  199. {snowflake_connector_python-5.0.0b1 → snowflake_connector_python-5.0.0b2}/sf_core/src/rest/snowflake/error.rs +0 -0
  200. {snowflake_connector_python-5.0.0b1 → snowflake_connector_python-5.0.0b2}/sf_core/src/rest/snowflake/query_request.rs +0 -0
  201. {snowflake_connector_python-5.0.0b1 → snowflake_connector_python-5.0.0b2}/sf_core/src/rest/snowflake/sql_state.rs +0 -0
  202. {snowflake_connector_python-5.0.0b1 → snowflake_connector_python-5.0.0b2}/sf_core/src/sensitive.rs +0 -0
  203. {snowflake_connector_python-5.0.0b1 → snowflake_connector_python-5.0.0b2}/sf_core/src/telemetry/environment.rs +0 -0
  204. {snowflake_connector_python-5.0.0b1 → snowflake_connector_python-5.0.0b2}/sf_core/src/telemetry/os_details.rs +0 -0
  205. {snowflake_connector_python-5.0.0b1 → snowflake_connector_python-5.0.0b2}/sf_core/src/telemetry/platform_detection/aws.rs +0 -0
  206. {snowflake_connector_python-5.0.0b1 → snowflake_connector_python-5.0.0b2}/sf_core/src/telemetry/platform_detection/azure.rs +0 -0
  207. {snowflake_connector_python-5.0.0b1 → snowflake_connector_python-5.0.0b2}/sf_core/src/telemetry/platform_detection/gcp.rs +0 -0
  208. {snowflake_connector_python-5.0.0b1 → snowflake_connector_python-5.0.0b2}/sf_core/src/telemetry/platform_detection/mod.rs +0 -0
  209. {snowflake_connector_python-5.0.0b1 → snowflake_connector_python-5.0.0b2}/sf_core/src/telemetry/platform_detection/tests.rs +0 -0
  210. {snowflake_connector_python-5.0.0b1 → snowflake_connector_python-5.0.0b2}/sf_core/src/telemetry/serialization.rs +0 -0
  211. {snowflake_connector_python-5.0.0b1 → snowflake_connector_python-5.0.0b2}/sf_core/src/telemetry/types.rs +0 -0
  212. {snowflake_connector_python-5.0.0b1 → snowflake_connector_python-5.0.0b2}/sf_core/src/tls/config.rs +0 -0
  213. {snowflake_connector_python-5.0.0b1 → snowflake_connector_python-5.0.0b2}/sf_core/src/tls/error.rs +0 -0
  214. {snowflake_connector_python-5.0.0b1 → snowflake_connector_python-5.0.0b2}/sf_core/src/tls/revocation.rs +0 -0
  215. {snowflake_connector_python-5.0.0b1 → snowflake_connector_python-5.0.0b2}/sf_core/src/tls/test_helpers.rs +0 -0
  216. {snowflake_connector_python-5.0.0b1 → snowflake_connector_python-5.0.0b2}/sf_core/src/tls/x509_utils.rs +0 -0
  217. {snowflake_connector_python-5.0.0b1 → snowflake_connector_python-5.0.0b2}/sf_core/tests/common/arrow_deserialize.rs +0 -0
  218. {snowflake_connector_python-5.0.0b1 → snowflake_connector_python-5.0.0b2}/sf_core/tests/common/arrow_deserialize_macro/Cargo.toml +0 -0
  219. {snowflake_connector_python-5.0.0b1 → snowflake_connector_python-5.0.0b2}/sf_core/tests/common/arrow_deserialize_macro/src/lib.rs +0 -0
  220. {snowflake_connector_python-5.0.0b1 → snowflake_connector_python-5.0.0b2}/sf_core/tests/common/arrow_extract_value.rs +0 -0
  221. {snowflake_connector_python-5.0.0b1 → snowflake_connector_python-5.0.0b2}/sf_core/tests/common/file_utils.rs +0 -0
  222. {snowflake_connector_python-5.0.0b1 → snowflake_connector_python-5.0.0b2}/sf_core/tests/common/mocks/mfa.rs +0 -0
  223. {snowflake_connector_python-5.0.0b1 → snowflake_connector_python-5.0.0b2}/sf_core/tests/common/mocks/okta.rs +0 -0
  224. {snowflake_connector_python-5.0.0b1 → snowflake_connector_python-5.0.0b2}/sf_core/tests/common/mocks/password.rs +0 -0
  225. {snowflake_connector_python-5.0.0b1 → snowflake_connector_python-5.0.0b2}/sf_core/tests/common/mocks/put_get.rs +0 -0
  226. {snowflake_connector_python-5.0.0b1 → snowflake_connector_python-5.0.0b2}/sf_core/tests/common/mocks/session.rs +0 -0
  227. {snowflake_connector_python-5.0.0b1 → snowflake_connector_python-5.0.0b2}/sf_core/tests/common/mod.rs +0 -0
  228. {snowflake_connector_python-5.0.0b1 → snowflake_connector_python-5.0.0b2}/sf_core/tests/common/private_key_helper.rs +0 -0
  229. {snowflake_connector_python-5.0.0b1 → snowflake_connector_python-5.0.0b2}/sf_core/tests/common/test_server.rs +0 -0
  230. {snowflake_connector_python-5.0.0b1 → snowflake_connector_python-5.0.0b2}/sf_core/tests/common/test_utils.rs +0 -0
  231. {snowflake_connector_python-5.0.0b1 → snowflake_connector_python-5.0.0b2}/sf_core/tests/common/tls_proxy.rs +0 -0
  232. {snowflake_connector_python-5.0.0b1 → snowflake_connector_python-5.0.0b2}/src/snowflake/connector/_common/__init__.py +0 -0
  233. {snowflake_connector_python-5.0.0b1 → snowflake_connector_python-5.0.0b2}/src/snowflake/connector/_internal/__init__.py +0 -0
  234. {snowflake_connector_python-5.0.0b1 → snowflake_connector_python-5.0.0b2}/src/snowflake/connector/_internal/_private_key_helper.py +0 -0
  235. {snowflake_connector_python-5.0.0b1 → snowflake_connector_python-5.0.0b2}/src/snowflake/connector/_internal/api_client/c_api.py +0 -0
  236. {snowflake_connector_python-5.0.0b1 → snowflake_connector_python-5.0.0b2}/src/snowflake/connector/_internal/arrow_stream_iterator.pyi +0 -0
  237. {snowflake_connector_python-5.0.0b1 → snowflake_connector_python-5.0.0b2}/src/snowflake/connector/_internal/config_utils.py +0 -0
  238. {snowflake_connector_python-5.0.0b1 → snowflake_connector_python-5.0.0b2}/src/snowflake/connector/_internal/errorcode.py +0 -0
  239. {snowflake_connector_python-5.0.0b1 → snowflake_connector_python-5.0.0b2}/src/snowflake/connector/_internal/nanoarrow_cpp/ArrowIterator/ArrayConverter.cpp +0 -0
  240. {snowflake_connector_python-5.0.0b1 → snowflake_connector_python-5.0.0b2}/src/snowflake/connector/_internal/nanoarrow_cpp/ArrowIterator/ArrayConverter.hpp +0 -0
  241. {snowflake_connector_python-5.0.0b1 → snowflake_connector_python-5.0.0b2}/src/snowflake/connector/_internal/nanoarrow_cpp/ArrowIterator/ArrowTableConverter.cpp +0 -0
  242. {snowflake_connector_python-5.0.0b1 → snowflake_connector_python-5.0.0b2}/src/snowflake/connector/_internal/nanoarrow_cpp/ArrowIterator/ArrowTableConverter.hpp +0 -0
  243. {snowflake_connector_python-5.0.0b1 → snowflake_connector_python-5.0.0b2}/src/snowflake/connector/_internal/nanoarrow_cpp/ArrowIterator/BinaryConverter.cpp +0 -0
  244. {snowflake_connector_python-5.0.0b1 → snowflake_connector_python-5.0.0b2}/src/snowflake/connector/_internal/nanoarrow_cpp/ArrowIterator/BinaryConverter.hpp +0 -0
  245. {snowflake_connector_python-5.0.0b1 → snowflake_connector_python-5.0.0b2}/src/snowflake/connector/_internal/nanoarrow_cpp/ArrowIterator/BooleanConverter.cpp +0 -0
  246. {snowflake_connector_python-5.0.0b1 → snowflake_connector_python-5.0.0b2}/src/snowflake/connector/_internal/nanoarrow_cpp/ArrowIterator/BooleanConverter.hpp +0 -0
  247. {snowflake_connector_python-5.0.0b1 → snowflake_connector_python-5.0.0b2}/src/snowflake/connector/_internal/nanoarrow_cpp/ArrowIterator/CArrowIterator.cpp +0 -0
  248. {snowflake_connector_python-5.0.0b1 → snowflake_connector_python-5.0.0b2}/src/snowflake/connector/_internal/nanoarrow_cpp/ArrowIterator/CArrowIterator.hpp +0 -0
  249. {snowflake_connector_python-5.0.0b1 → snowflake_connector_python-5.0.0b2}/src/snowflake/connector/_internal/nanoarrow_cpp/ArrowIterator/CArrowStreamIterator.cpp +0 -0
  250. {snowflake_connector_python-5.0.0b1 → snowflake_connector_python-5.0.0b2}/src/snowflake/connector/_internal/nanoarrow_cpp/ArrowIterator/CArrowStreamIterator.hpp +0 -0
  251. {snowflake_connector_python-5.0.0b1 → snowflake_connector_python-5.0.0b2}/src/snowflake/connector/_internal/nanoarrow_cpp/ArrowIterator/CArrowStreamTableIterator.cpp +0 -0
  252. {snowflake_connector_python-5.0.0b1 → snowflake_connector_python-5.0.0b2}/src/snowflake/connector/_internal/nanoarrow_cpp/ArrowIterator/CArrowStreamTableIterator.hpp +0 -0
  253. {snowflake_connector_python-5.0.0b1 → snowflake_connector_python-5.0.0b2}/src/snowflake/connector/_internal/nanoarrow_cpp/ArrowIterator/ConverterUtil.cpp +0 -0
  254. {snowflake_connector_python-5.0.0b1 → snowflake_connector_python-5.0.0b2}/src/snowflake/connector/_internal/nanoarrow_cpp/ArrowIterator/ConverterUtil.hpp +0 -0
  255. {snowflake_connector_python-5.0.0b1 → snowflake_connector_python-5.0.0b2}/src/snowflake/connector/_internal/nanoarrow_cpp/ArrowIterator/DateConverter.cpp +0 -0
  256. {snowflake_connector_python-5.0.0b1 → snowflake_connector_python-5.0.0b2}/src/snowflake/connector/_internal/nanoarrow_cpp/ArrowIterator/DateConverter.hpp +0 -0
  257. {snowflake_connector_python-5.0.0b1 → snowflake_connector_python-5.0.0b2}/src/snowflake/connector/_internal/nanoarrow_cpp/ArrowIterator/DecFloatConverter.cpp +0 -0
  258. {snowflake_connector_python-5.0.0b1 → snowflake_connector_python-5.0.0b2}/src/snowflake/connector/_internal/nanoarrow_cpp/ArrowIterator/DecFloatConverter.hpp +0 -0
  259. {snowflake_connector_python-5.0.0b1 → snowflake_connector_python-5.0.0b2}/src/snowflake/connector/_internal/nanoarrow_cpp/ArrowIterator/DecimalConverter.cpp +0 -0
  260. {snowflake_connector_python-5.0.0b1 → snowflake_connector_python-5.0.0b2}/src/snowflake/connector/_internal/nanoarrow_cpp/ArrowIterator/DecimalConverter.hpp +0 -0
  261. {snowflake_connector_python-5.0.0b1 → snowflake_connector_python-5.0.0b2}/src/snowflake/connector/_internal/nanoarrow_cpp/ArrowIterator/FixedSizeListConverter.cpp +0 -0
  262. {snowflake_connector_python-5.0.0b1 → snowflake_connector_python-5.0.0b2}/src/snowflake/connector/_internal/nanoarrow_cpp/ArrowIterator/FixedSizeListConverter.hpp +0 -0
  263. {snowflake_connector_python-5.0.0b1 → snowflake_connector_python-5.0.0b2}/src/snowflake/connector/_internal/nanoarrow_cpp/ArrowIterator/FloatConverter.cpp +0 -0
  264. {snowflake_connector_python-5.0.0b1 → snowflake_connector_python-5.0.0b2}/src/snowflake/connector/_internal/nanoarrow_cpp/ArrowIterator/FloatConverter.hpp +0 -0
  265. {snowflake_connector_python-5.0.0b1 → snowflake_connector_python-5.0.0b2}/src/snowflake/connector/_internal/nanoarrow_cpp/ArrowIterator/IColumnConverter.hpp +0 -0
  266. {snowflake_connector_python-5.0.0b1 → snowflake_connector_python-5.0.0b2}/src/snowflake/connector/_internal/nanoarrow_cpp/ArrowIterator/IntConverter.cpp +0 -0
  267. {snowflake_connector_python-5.0.0b1 → snowflake_connector_python-5.0.0b2}/src/snowflake/connector/_internal/nanoarrow_cpp/ArrowIterator/IntConverter.hpp +0 -0
  268. {snowflake_connector_python-5.0.0b1 → snowflake_connector_python-5.0.0b2}/src/snowflake/connector/_internal/nanoarrow_cpp/ArrowIterator/IntervalConverter.cpp +0 -0
  269. {snowflake_connector_python-5.0.0b1 → snowflake_connector_python-5.0.0b2}/src/snowflake/connector/_internal/nanoarrow_cpp/ArrowIterator/IntervalConverter.hpp +0 -0
  270. {snowflake_connector_python-5.0.0b1 → snowflake_connector_python-5.0.0b2}/src/snowflake/connector/_internal/nanoarrow_cpp/ArrowIterator/LICENSE.txt +0 -0
  271. {snowflake_connector_python-5.0.0b1 → snowflake_connector_python-5.0.0b2}/src/snowflake/connector/_internal/nanoarrow_cpp/ArrowIterator/MapConverter.cpp +0 -0
  272. {snowflake_connector_python-5.0.0b1 → snowflake_connector_python-5.0.0b2}/src/snowflake/connector/_internal/nanoarrow_cpp/ArrowIterator/MapConverter.hpp +0 -0
  273. {snowflake_connector_python-5.0.0b1 → snowflake_connector_python-5.0.0b2}/src/snowflake/connector/_internal/nanoarrow_cpp/ArrowIterator/ObjectConverter.cpp +0 -0
  274. {snowflake_connector_python-5.0.0b1 → snowflake_connector_python-5.0.0b2}/src/snowflake/connector/_internal/nanoarrow_cpp/ArrowIterator/ObjectConverter.hpp +0 -0
  275. {snowflake_connector_python-5.0.0b1 → snowflake_connector_python-5.0.0b2}/src/snowflake/connector/_internal/nanoarrow_cpp/ArrowIterator/Python/Common.cpp +0 -0
  276. {snowflake_connector_python-5.0.0b1 → snowflake_connector_python-5.0.0b2}/src/snowflake/connector/_internal/nanoarrow_cpp/ArrowIterator/Python/Common.hpp +0 -0
  277. {snowflake_connector_python-5.0.0b1 → snowflake_connector_python-5.0.0b2}/src/snowflake/connector/_internal/nanoarrow_cpp/ArrowIterator/Python/Helpers.cpp +0 -0
  278. {snowflake_connector_python-5.0.0b1 → snowflake_connector_python-5.0.0b2}/src/snowflake/connector/_internal/nanoarrow_cpp/ArrowIterator/Python/Helpers.hpp +0 -0
  279. {snowflake_connector_python-5.0.0b1 → snowflake_connector_python-5.0.0b2}/src/snowflake/connector/_internal/nanoarrow_cpp/ArrowIterator/SnowflakeType.cpp +0 -0
  280. {snowflake_connector_python-5.0.0b1 → snowflake_connector_python-5.0.0b2}/src/snowflake/connector/_internal/nanoarrow_cpp/ArrowIterator/SnowflakeType.hpp +0 -0
  281. {snowflake_connector_python-5.0.0b1 → snowflake_connector_python-5.0.0b2}/src/snowflake/connector/_internal/nanoarrow_cpp/ArrowIterator/StringConverter.cpp +0 -0
  282. {snowflake_connector_python-5.0.0b1 → snowflake_connector_python-5.0.0b2}/src/snowflake/connector/_internal/nanoarrow_cpp/ArrowIterator/StringConverter.hpp +0 -0
  283. {snowflake_connector_python-5.0.0b1 → snowflake_connector_python-5.0.0b2}/src/snowflake/connector/_internal/nanoarrow_cpp/ArrowIterator/TimeConverter.cpp +0 -0
  284. {snowflake_connector_python-5.0.0b1 → snowflake_connector_python-5.0.0b2}/src/snowflake/connector/_internal/nanoarrow_cpp/ArrowIterator/TimeConverter.hpp +0 -0
  285. {snowflake_connector_python-5.0.0b1 → snowflake_connector_python-5.0.0b2}/src/snowflake/connector/_internal/nanoarrow_cpp/ArrowIterator/TimeStampConverter.cpp +0 -0
  286. {snowflake_connector_python-5.0.0b1 → snowflake_connector_python-5.0.0b2}/src/snowflake/connector/_internal/nanoarrow_cpp/ArrowIterator/TimeStampConverter.hpp +0 -0
  287. {snowflake_connector_python-5.0.0b1 → snowflake_connector_python-5.0.0b2}/src/snowflake/connector/_internal/nanoarrow_cpp/ArrowIterator/Util/macros.hpp +0 -0
  288. {snowflake_connector_python-5.0.0b1 → snowflake_connector_python-5.0.0b2}/src/snowflake/connector/_internal/nanoarrow_cpp/ArrowIterator/Util/time.cpp +0 -0
  289. {snowflake_connector_python-5.0.0b1 → snowflake_connector_python-5.0.0b2}/src/snowflake/connector/_internal/nanoarrow_cpp/ArrowIterator/Util/time.hpp +0 -0
  290. {snowflake_connector_python-5.0.0b1 → snowflake_connector_python-5.0.0b2}/src/snowflake/connector/_internal/nanoarrow_cpp/ArrowIterator/arrow_stream_iterator.cpp +0 -0
  291. {snowflake_connector_python-5.0.0b1 → snowflake_connector_python-5.0.0b2}/src/snowflake/connector/_internal/nanoarrow_cpp/ArrowIterator/arrow_stream_iterator.pyx +0 -0
  292. {snowflake_connector_python-5.0.0b1 → snowflake_connector_python-5.0.0b2}/src/snowflake/connector/_internal/nanoarrow_cpp/ArrowIterator/flatcc/flatcc_accessors.h +0 -0
  293. {snowflake_connector_python-5.0.0b1 → snowflake_connector_python-5.0.0b2}/src/snowflake/connector/_internal/nanoarrow_cpp/ArrowIterator/flatcc/flatcc_alloc.h +0 -0
  294. {snowflake_connector_python-5.0.0b1 → snowflake_connector_python-5.0.0b2}/src/snowflake/connector/_internal/nanoarrow_cpp/ArrowIterator/flatcc/flatcc_assert.h +0 -0
  295. {snowflake_connector_python-5.0.0b1 → snowflake_connector_python-5.0.0b2}/src/snowflake/connector/_internal/nanoarrow_cpp/ArrowIterator/flatcc/flatcc_builder.h +0 -0
  296. {snowflake_connector_python-5.0.0b1 → snowflake_connector_python-5.0.0b2}/src/snowflake/connector/_internal/nanoarrow_cpp/ArrowIterator/flatcc/flatcc_emitter.h +0 -0
  297. {snowflake_connector_python-5.0.0b1 → snowflake_connector_python-5.0.0b2}/src/snowflake/connector/_internal/nanoarrow_cpp/ArrowIterator/flatcc/flatcc_endian.h +0 -0
  298. {snowflake_connector_python-5.0.0b1 → snowflake_connector_python-5.0.0b2}/src/snowflake/connector/_internal/nanoarrow_cpp/ArrowIterator/flatcc/flatcc_epilogue.h +0 -0
  299. {snowflake_connector_python-5.0.0b1 → snowflake_connector_python-5.0.0b2}/src/snowflake/connector/_internal/nanoarrow_cpp/ArrowIterator/flatcc/flatcc_flatbuffers.h +0 -0
  300. {snowflake_connector_python-5.0.0b1 → snowflake_connector_python-5.0.0b2}/src/snowflake/connector/_internal/nanoarrow_cpp/ArrowIterator/flatcc/flatcc_identifier.h +0 -0
  301. {snowflake_connector_python-5.0.0b1 → snowflake_connector_python-5.0.0b2}/src/snowflake/connector/_internal/nanoarrow_cpp/ArrowIterator/flatcc/flatcc_iov.h +0 -0
  302. {snowflake_connector_python-5.0.0b1 → snowflake_connector_python-5.0.0b2}/src/snowflake/connector/_internal/nanoarrow_cpp/ArrowIterator/flatcc/flatcc_prologue.h +0 -0
  303. {snowflake_connector_python-5.0.0b1 → snowflake_connector_python-5.0.0b2}/src/snowflake/connector/_internal/nanoarrow_cpp/ArrowIterator/flatcc/flatcc_refmap.h +0 -0
  304. {snowflake_connector_python-5.0.0b1 → snowflake_connector_python-5.0.0b2}/src/snowflake/connector/_internal/nanoarrow_cpp/ArrowIterator/flatcc/flatcc_rtconfig.h +0 -0
  305. {snowflake_connector_python-5.0.0b1 → snowflake_connector_python-5.0.0b2}/src/snowflake/connector/_internal/nanoarrow_cpp/ArrowIterator/flatcc/flatcc_types.h +0 -0
  306. {snowflake_connector_python-5.0.0b1 → snowflake_connector_python-5.0.0b2}/src/snowflake/connector/_internal/nanoarrow_cpp/ArrowIterator/flatcc/flatcc_verifier.h +0 -0
  307. {snowflake_connector_python-5.0.0b1 → snowflake_connector_python-5.0.0b2}/src/snowflake/connector/_internal/nanoarrow_cpp/ArrowIterator/flatcc/portable/flatcc_portable.h +0 -0
  308. {snowflake_connector_python-5.0.0b1 → snowflake_connector_python-5.0.0b2}/src/snowflake/connector/_internal/nanoarrow_cpp/ArrowIterator/flatcc/portable/paligned_alloc.h +0 -0
  309. {snowflake_connector_python-5.0.0b1 → snowflake_connector_python-5.0.0b2}/src/snowflake/connector/_internal/nanoarrow_cpp/ArrowIterator/flatcc/portable/pattributes.h +0 -0
  310. {snowflake_connector_python-5.0.0b1 → snowflake_connector_python-5.0.0b2}/src/snowflake/connector/_internal/nanoarrow_cpp/ArrowIterator/flatcc/portable/pdiagnostic.h +0 -0
  311. {snowflake_connector_python-5.0.0b1 → snowflake_connector_python-5.0.0b2}/src/snowflake/connector/_internal/nanoarrow_cpp/ArrowIterator/flatcc/portable/pdiagnostic_pop.h +0 -0
  312. {snowflake_connector_python-5.0.0b1 → snowflake_connector_python-5.0.0b2}/src/snowflake/connector/_internal/nanoarrow_cpp/ArrowIterator/flatcc/portable/pdiagnostic_push.h +0 -0
  313. {snowflake_connector_python-5.0.0b1 → snowflake_connector_python-5.0.0b2}/src/snowflake/connector/_internal/nanoarrow_cpp/ArrowIterator/flatcc/portable/pendian.h +0 -0
  314. {snowflake_connector_python-5.0.0b1 → snowflake_connector_python-5.0.0b2}/src/snowflake/connector/_internal/nanoarrow_cpp/ArrowIterator/flatcc/portable/pendian_detect.h +0 -0
  315. {snowflake_connector_python-5.0.0b1 → snowflake_connector_python-5.0.0b2}/src/snowflake/connector/_internal/nanoarrow_cpp/ArrowIterator/flatcc/portable/pinline.h +0 -0
  316. {snowflake_connector_python-5.0.0b1 → snowflake_connector_python-5.0.0b2}/src/snowflake/connector/_internal/nanoarrow_cpp/ArrowIterator/flatcc/portable/pinttypes.h +0 -0
  317. {snowflake_connector_python-5.0.0b1 → snowflake_connector_python-5.0.0b2}/src/snowflake/connector/_internal/nanoarrow_cpp/ArrowIterator/flatcc/portable/portable.h +0 -0
  318. {snowflake_connector_python-5.0.0b1 → snowflake_connector_python-5.0.0b2}/src/snowflake/connector/_internal/nanoarrow_cpp/ArrowIterator/flatcc/portable/portable_basic.h +0 -0
  319. {snowflake_connector_python-5.0.0b1 → snowflake_connector_python-5.0.0b2}/src/snowflake/connector/_internal/nanoarrow_cpp/ArrowIterator/flatcc/portable/pstatic_assert.h +0 -0
  320. {snowflake_connector_python-5.0.0b1 → snowflake_connector_python-5.0.0b2}/src/snowflake/connector/_internal/nanoarrow_cpp/ArrowIterator/flatcc/portable/pstdalign.h +0 -0
  321. {snowflake_connector_python-5.0.0b1 → snowflake_connector_python-5.0.0b2}/src/snowflake/connector/_internal/nanoarrow_cpp/ArrowIterator/flatcc/portable/pstdint.h +0 -0
  322. {snowflake_connector_python-5.0.0b1 → snowflake_connector_python-5.0.0b2}/src/snowflake/connector/_internal/nanoarrow_cpp/ArrowIterator/flatcc/portable/punaligned.h +0 -0
  323. {snowflake_connector_python-5.0.0b1 → snowflake_connector_python-5.0.0b2}/src/snowflake/connector/_internal/nanoarrow_cpp/ArrowIterator/flatcc/portable/pversion.h +0 -0
  324. {snowflake_connector_python-5.0.0b1 → snowflake_connector_python-5.0.0b2}/src/snowflake/connector/_internal/nanoarrow_cpp/ArrowIterator/flatcc/portable/pwarnings.h +0 -0
  325. {snowflake_connector_python-5.0.0b1 → snowflake_connector_python-5.0.0b2}/src/snowflake/connector/_internal/nanoarrow_cpp/ArrowIterator/flatcc.c +0 -0
  326. {snowflake_connector_python-5.0.0b1 → snowflake_connector_python-5.0.0b2}/src/snowflake/connector/_internal/nanoarrow_cpp/ArrowIterator/nanoarrow.c +0 -0
  327. {snowflake_connector_python-5.0.0b1 → snowflake_connector_python-5.0.0b2}/src/snowflake/connector/_internal/nanoarrow_cpp/ArrowIterator/nanoarrow.h +0 -0
  328. {snowflake_connector_python-5.0.0b1 → snowflake_connector_python-5.0.0b2}/src/snowflake/connector/_internal/nanoarrow_cpp/ArrowIterator/nanoarrow.hpp +0 -0
  329. {snowflake_connector_python-5.0.0b1 → snowflake_connector_python-5.0.0b2}/src/snowflake/connector/_internal/nanoarrow_cpp/ArrowIterator/nanoarrow_ipc.c +0 -0
  330. {snowflake_connector_python-5.0.0b1 → snowflake_connector_python-5.0.0b2}/src/snowflake/connector/_internal/nanoarrow_cpp/ArrowIterator/nanoarrow_ipc.h +0 -0
  331. {snowflake_connector_python-5.0.0b1 → snowflake_connector_python-5.0.0b2}/src/snowflake/connector/_internal/nanoarrow_cpp/Logging/logging.cpp +0 -0
  332. {snowflake_connector_python-5.0.0b1 → snowflake_connector_python-5.0.0b2}/src/snowflake/connector/_internal/nanoarrow_cpp/Logging/logging.hpp +0 -0
  333. {snowflake_connector_python-5.0.0b1 → snowflake_connector_python-5.0.0b2}/src/snowflake/connector/_internal/protobuf_gen/__init__.py +0 -0
  334. {snowflake_connector_python-5.0.0b1 → snowflake_connector_python-5.0.0b2}/src/snowflake/connector/_internal/protobuf_gen/proto_exception.py +0 -0
  335. {snowflake_connector_python-5.0.0b1 → snowflake_connector_python-5.0.0b2}/src/snowflake/connector/_internal/sqlstate.py +0 -0
  336. {snowflake_connector_python-5.0.0b1 → snowflake_connector_python-5.0.0b2}/src/snowflake/connector/_internal/status_codes.py +0 -0
  337. {snowflake_connector_python-5.0.0b1 → snowflake_connector_python-5.0.0b2}/src/snowflake/connector/_internal/text_utils.py +0 -0
  338. {snowflake_connector_python-5.0.0b1 → snowflake_connector_python-5.0.0b2}/src/snowflake/connector/_internal/type_codes.py +0 -0
  339. {snowflake_connector_python-5.0.0b1 → snowflake_connector_python-5.0.0b2}/src/snowflake/connector/auth/__init__.py +0 -0
  340. {snowflake_connector_python-5.0.0b1 → snowflake_connector_python-5.0.0b2}/src/snowflake/connector/auth/workload_identity.py +0 -0
  341. {snowflake_connector_python-5.0.0b1 → snowflake_connector_python-5.0.0b2}/src/snowflake/connector/compat.py +0 -0
  342. {snowflake_connector_python-5.0.0b1 → snowflake_connector_python-5.0.0b2}/src/snowflake/connector/constants.py +0 -0
  343. {snowflake_connector_python-5.0.0b1 → snowflake_connector_python-5.0.0b2}/src/snowflake/connector/cursor/_query_result_waiter.py +0 -0
  344. {snowflake_connector_python-5.0.0b1 → snowflake_connector_python-5.0.0b2}/src/snowflake/connector/cursor/_result_metadata.py +0 -0
  345. {snowflake_connector_python-5.0.0b1 → snowflake_connector_python-5.0.0b2}/src/snowflake/connector/description.py +0 -0
  346. {snowflake_connector_python-5.0.0b1 → snowflake_connector_python-5.0.0b2}/src/snowflake/connector/errors.py +0 -0
  347. {snowflake_connector_python-5.0.0b1 → snowflake_connector_python-5.0.0b2}/src/snowflake/connector/py.typed +0 -0
  348. {snowflake_connector_python-5.0.0b1 → snowflake_connector_python-5.0.0b2}/src/snowflake/connector/telemetry.py +0 -0
  349. {snowflake_connector_python-5.0.0b1 → snowflake_connector_python-5.0.0b2}/src/snowflake/connector/time_util.py +0 -0
  350. {snowflake_connector_python-5.0.0b1 → snowflake_connector_python-5.0.0b2}/src/snowflake/connector/util_text.py +0 -0
@@ -905,6 +905,55 @@ dependencies = [
905
905
  "tracing",
906
906
  ]
907
907
 
908
+ [[package]]
909
+ name = "axum"
910
+ version = "0.8.9"
911
+ source = "registry+https://github.com/rust-lang/crates.io-index"
912
+ checksum = "31b698c5f9a010f6573133b09e0de5408834d0c82f8d7475a89fc1867a71cd90"
913
+ dependencies = [
914
+ "axum-core",
915
+ "bytes",
916
+ "form_urlencoded",
917
+ "futures-util",
918
+ "http 1.3.1",
919
+ "http-body 1.0.1",
920
+ "http-body-util",
921
+ "hyper 1.7.0",
922
+ "hyper-util",
923
+ "itoa",
924
+ "matchit",
925
+ "memchr",
926
+ "mime",
927
+ "percent-encoding",
928
+ "pin-project-lite",
929
+ "serde_core",
930
+ "serde_path_to_error",
931
+ "serde_urlencoded",
932
+ "sync_wrapper",
933
+ "tokio",
934
+ "tower",
935
+ "tower-layer",
936
+ "tower-service",
937
+ ]
938
+
939
+ [[package]]
940
+ name = "axum-core"
941
+ version = "0.5.6"
942
+ source = "registry+https://github.com/rust-lang/crates.io-index"
943
+ checksum = "08c78f31d7b1291f7ee735c1c6780ccde7785daae9a9206026862dab7d8792d1"
944
+ dependencies = [
945
+ "bytes",
946
+ "futures-core",
947
+ "http 1.3.1",
948
+ "http-body 1.0.1",
949
+ "http-body-util",
950
+ "mime",
951
+ "pin-project-lite",
952
+ "sync_wrapper",
953
+ "tower-layer",
954
+ "tower-service",
955
+ ]
956
+
908
957
  [[package]]
909
958
  name = "backtrace"
910
959
  version = "0.3.76"
@@ -1377,7 +1426,7 @@ dependencies = [
1377
1426
  "crc",
1378
1427
  "digest",
1379
1428
  "libc",
1380
- "rand",
1429
+ "rand 0.9.2",
1381
1430
  "regex",
1382
1431
  ]
1383
1432
 
@@ -2652,7 +2701,7 @@ dependencies = [
2652
2701
  name = "jdbc_bridge"
2653
2702
  version = "0.1.0"
2654
2703
  dependencies = [
2655
- "jni",
2704
+ "jni 0.21.1",
2656
2705
  "proto_utils",
2657
2706
  "sf_core",
2658
2707
  "tokio",
@@ -2694,7 +2743,7 @@ dependencies = [
2694
2743
  "cfg-if",
2695
2744
  "combine",
2696
2745
  "java-locator",
2697
- "jni-sys",
2746
+ "jni-sys 0.3.0",
2698
2747
  "libloading 0.7.4",
2699
2748
  "log",
2700
2749
  "thiserror 1.0.69",
@@ -2702,12 +2751,61 @@ dependencies = [
2702
2751
  "windows-sys 0.45.0",
2703
2752
  ]
2704
2753
 
2754
+ [[package]]
2755
+ name = "jni"
2756
+ version = "0.22.4"
2757
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2758
+ checksum = "5efd9a482cf3a427f00d6b35f14332adc7902ce91efb778580e180ff90fa3498"
2759
+ dependencies = [
2760
+ "cfg-if",
2761
+ "combine",
2762
+ "jni-macros",
2763
+ "jni-sys 0.4.1",
2764
+ "log",
2765
+ "simd_cesu8",
2766
+ "thiserror 2.0.16",
2767
+ "walkdir",
2768
+ "windows-link 0.2.0",
2769
+ ]
2770
+
2771
+ [[package]]
2772
+ name = "jni-macros"
2773
+ version = "0.22.4"
2774
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2775
+ checksum = "a00109accc170f0bdb141fed3e393c565b6f5e072365c3bd58f5b062591560a3"
2776
+ dependencies = [
2777
+ "proc-macro2",
2778
+ "quote",
2779
+ "rustc_version",
2780
+ "simd_cesu8",
2781
+ "syn 2.0.106",
2782
+ ]
2783
+
2705
2784
  [[package]]
2706
2785
  name = "jni-sys"
2707
2786
  version = "0.3.0"
2708
2787
  source = "registry+https://github.com/rust-lang/crates.io-index"
2709
2788
  checksum = "8eaf4bc02d17cbdd7ff4c7438cafcdf7fb9a4613313ad11b4f8fefe7d3fa0130"
2710
2789
 
2790
+ [[package]]
2791
+ name = "jni-sys"
2792
+ version = "0.4.1"
2793
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2794
+ checksum = "c6377a88cb3910bee9b0fa88d4f42e1d2da8e79915598f65fb0c7ee14c878af2"
2795
+ dependencies = [
2796
+ "jni-sys-macros",
2797
+ ]
2798
+
2799
+ [[package]]
2800
+ name = "jni-sys-macros"
2801
+ version = "0.4.1"
2802
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2803
+ checksum = "38c0b942f458fe50cdac086d2f946512305e5631e720728f2a61aabcd47a6264"
2804
+ dependencies = [
2805
+ "quote",
2806
+ "syn 2.0.106",
2807
+ ]
2808
+
2711
2809
  [[package]]
2712
2810
  name = "jobserver"
2713
2811
  version = "0.1.34"
@@ -2931,6 +3029,12 @@ dependencies = [
2931
3029
  "regex-automata",
2932
3030
  ]
2933
3031
 
3032
+ [[package]]
3033
+ name = "matchit"
3034
+ version = "0.8.4"
3035
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3036
+ checksum = "47e1ffaa40ddd1f3ed91f717a33c8c0ee23fff369e3aa8772b9605cc1d22f4c3"
3037
+
2934
3038
  [[package]]
2935
3039
  name = "md-5"
2936
3040
  version = "0.10.6"
@@ -3031,6 +3135,12 @@ dependencies = [
3031
3135
  "tempfile",
3032
3136
  ]
3033
3137
 
3138
+ [[package]]
3139
+ name = "ndk-context"
3140
+ version = "0.1.1"
3141
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3142
+ checksum = "27b02d87554356db9e9a873add8782d4ea6e3e58ea071a9adb9a2e8ddb884a8b"
3143
+
3034
3144
  [[package]]
3035
3145
  name = "nix"
3036
3146
  version = "0.26.4"
@@ -3173,6 +3283,26 @@ dependencies = [
3173
3283
  "libc",
3174
3284
  ]
3175
3285
 
3286
+ [[package]]
3287
+ name = "oauth2"
3288
+ version = "5.0.0"
3289
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3290
+ checksum = "51e219e79014df21a225b1860a479e2dcd7cbd9130f4defd4bd0e191ea31d67d"
3291
+ dependencies = [
3292
+ "base64 0.22.1",
3293
+ "chrono",
3294
+ "getrandom 0.2.16",
3295
+ "http 1.3.1",
3296
+ "rand 0.8.6",
3297
+ "reqwest",
3298
+ "serde",
3299
+ "serde_json",
3300
+ "serde_path_to_error",
3301
+ "sha2",
3302
+ "thiserror 1.0.69",
3303
+ "url",
3304
+ ]
3305
+
3176
3306
  [[package]]
3177
3307
  name = "objc2"
3178
3308
  version = "0.6.4"
@@ -3355,9 +3485,12 @@ dependencies = [
3355
3485
  "parking_lot",
3356
3486
  "proto_utils",
3357
3487
  "rust-ini",
3488
+ "rustc_version",
3358
3489
  "serde_json",
3359
3490
  "sf_core",
3360
3491
  "snafu 0.8.9",
3492
+ "strum",
3493
+ "strum_macros",
3361
3494
  "test-case",
3362
3495
  "tokio",
3363
3496
  "tokio-util",
@@ -3540,7 +3673,7 @@ dependencies = [
3540
3673
  "futures-util",
3541
3674
  "opentelemetry",
3542
3675
  "percent-encoding",
3543
- "rand",
3676
+ "rand 0.9.2",
3544
3677
  "serde_json",
3545
3678
  "thiserror 2.0.16",
3546
3679
  ]
@@ -3985,7 +4118,7 @@ dependencies = [
3985
4118
  "bytes",
3986
4119
  "getrandom 0.3.3",
3987
4120
  "lru-slab",
3988
- "rand",
4121
+ "rand 0.9.2",
3989
4122
  "ring",
3990
4123
  "rustc-hash",
3991
4124
  "rustls 0.23.32",
@@ -4035,16 +4168,37 @@ dependencies = [
4035
4168
  "ptr_meta",
4036
4169
  ]
4037
4170
 
4171
+ [[package]]
4172
+ name = "rand"
4173
+ version = "0.8.6"
4174
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4175
+ checksum = "5ca0ecfa931c29007047d1bc58e623ab12e5590e8c7cc53200d5202b69266d8a"
4176
+ dependencies = [
4177
+ "libc",
4178
+ "rand_chacha 0.3.1",
4179
+ "rand_core 0.6.4",
4180
+ ]
4181
+
4038
4182
  [[package]]
4039
4183
  name = "rand"
4040
4184
  version = "0.9.2"
4041
4185
  source = "registry+https://github.com/rust-lang/crates.io-index"
4042
4186
  checksum = "6db2770f06117d490610c7488547d543617b21bfa07796d7a12f6f1bd53850d1"
4043
4187
  dependencies = [
4044
- "rand_chacha",
4188
+ "rand_chacha 0.9.0",
4045
4189
  "rand_core 0.9.3",
4046
4190
  ]
4047
4191
 
4192
+ [[package]]
4193
+ name = "rand_chacha"
4194
+ version = "0.3.1"
4195
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4196
+ checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88"
4197
+ dependencies = [
4198
+ "ppv-lite86",
4199
+ "rand_core 0.6.4",
4200
+ ]
4201
+
4048
4202
  [[package]]
4049
4203
  name = "rand_chacha"
4050
4204
  version = "0.9.0"
@@ -4609,6 +4763,17 @@ dependencies = [
4609
4763
  "serde_core",
4610
4764
  ]
4611
4765
 
4766
+ [[package]]
4767
+ name = "serde_path_to_error"
4768
+ version = "0.1.20"
4769
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4770
+ checksum = "10a9ff822e371bb5403e391ecd83e182e0e77ba7f6fe0160b795797109d1b457"
4771
+ dependencies = [
4772
+ "itoa",
4773
+ "serde",
4774
+ "serde_core",
4775
+ ]
4776
+
4612
4777
  [[package]]
4613
4778
  name = "serde_spanned"
4614
4779
  version = "0.6.9"
@@ -4664,6 +4829,7 @@ dependencies = [
4664
4829
  "aws-lc-rs",
4665
4830
  "aws-sdk-s3",
4666
4831
  "aws-sdk-sts",
4832
+ "axum",
4667
4833
  "base64 0.22.1",
4668
4834
  "brotli",
4669
4835
  "bzip2",
@@ -4681,6 +4847,7 @@ dependencies = [
4681
4847
  "glob",
4682
4848
  "hex",
4683
4849
  "html-escape",
4850
+ "http 1.3.1",
4684
4851
  "infer",
4685
4852
  "jwt",
4686
4853
  "keyring",
@@ -4688,6 +4855,7 @@ dependencies = [
4688
4855
  "lru",
4689
4856
  "memchr",
4690
4857
  "num-traits",
4858
+ "oauth2",
4691
4859
  "once_cell",
4692
4860
  "openssl",
4693
4861
  "opentelemetry",
@@ -4699,7 +4867,7 @@ dependencies = [
4699
4867
  "prost 0.14.1",
4700
4868
  "proto_generator",
4701
4869
  "proto_utils",
4702
- "rand",
4870
+ "rand 0.9.2",
4703
4871
  "rcgen",
4704
4872
  "reqwest",
4705
4873
  "rust-ini",
@@ -4733,6 +4901,7 @@ dependencies = [
4733
4901
  "url",
4734
4902
  "urlencoding",
4735
4903
  "uuid",
4904
+ "webbrowser",
4736
4905
  "wiremock",
4737
4906
  "x509-cert",
4738
4907
  "x509-parser",
@@ -4816,6 +4985,16 @@ version = "2.2.0"
4816
4985
  source = "registry+https://github.com/rust-lang/crates.io-index"
4817
4986
  checksum = "77549399552de45a898a580c1b41d445bf730df867cc44e6c0233bbc4b8329de"
4818
4987
 
4988
+ [[package]]
4989
+ name = "simd_cesu8"
4990
+ version = "1.1.1"
4991
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4992
+ checksum = "94f90157bb87cddf702797c5dadfa0be7d266cdf49e22da2fcaa32eff75b2c33"
4993
+ dependencies = [
4994
+ "rustc_version",
4995
+ "simdutf8",
4996
+ ]
4997
+
4819
4998
  [[package]]
4820
4999
  name = "simdutf8"
4821
5000
  version = "0.1.5"
@@ -4983,6 +5162,25 @@ version = "0.11.1"
4983
5162
  source = "registry+https://github.com/rust-lang/crates.io-index"
4984
5163
  checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f"
4985
5164
 
5165
+ [[package]]
5166
+ name = "strum"
5167
+ version = "0.26.3"
5168
+ source = "registry+https://github.com/rust-lang/crates.io-index"
5169
+ checksum = "8fec0f0aef304996cf250b31b5a10dee7980c85da9d759361292b8bca5a18f06"
5170
+
5171
+ [[package]]
5172
+ name = "strum_macros"
5173
+ version = "0.26.4"
5174
+ source = "registry+https://github.com/rust-lang/crates.io-index"
5175
+ checksum = "4c6bee85a5a24955dc440386795aa378cd9cf82acd5f764469152d2270e581be"
5176
+ dependencies = [
5177
+ "heck 0.5.0",
5178
+ "proc-macro2",
5179
+ "quote",
5180
+ "rustversion",
5181
+ "syn 2.0.106",
5182
+ ]
5183
+
4986
5184
  [[package]]
4987
5185
  name = "subtle"
4988
5186
  version = "2.6.1"
@@ -5885,6 +6083,22 @@ dependencies = [
5885
6083
  "wasm-bindgen",
5886
6084
  ]
5887
6085
 
6086
+ [[package]]
6087
+ name = "webbrowser"
6088
+ version = "1.2.1"
6089
+ source = "registry+https://github.com/rust-lang/crates.io-index"
6090
+ checksum = "0fc95580916af1e68ff6a7be07446fc5db73ebf71cf092de939bbf5f7e189f72"
6091
+ dependencies = [
6092
+ "core-foundation 0.10.1",
6093
+ "jni 0.22.4",
6094
+ "log",
6095
+ "ndk-context",
6096
+ "objc2",
6097
+ "objc2-foundation",
6098
+ "url",
6099
+ "web-sys",
6100
+ ]
6101
+
5888
6102
  [[package]]
5889
6103
  name = "webpki-roots"
5890
6104
  version = "1.0.2"
@@ -1,7 +1,7 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: snowflake-connector-python
3
- Version: 5.0.0b1
4
- Summary: A PEP 249 Database API 2.0 implementation for Snowflake
3
+ Version: 5.0.0b2
4
+ Summary: Snowflake DB driver for Python (Private Preview)
5
5
  Project-URL: Homepage, https://github.com/snowflakedb/universal-driver
6
6
  Project-URL: Bug Reports, https://github.com/snowflakedb/universal-driver/issues
7
7
  Project-URL: Source, https://github.com/snowflakedb/universal-driver
@@ -19,7 +19,7 @@ Classifier: Programming Language :: Python :: 3.13
19
19
  Classifier: Programming Language :: Python :: 3.14
20
20
  Classifier: Topic :: Database
21
21
  Classifier: Topic :: Software Development :: Libraries :: Python Modules
22
- Requires-Python: >=3.9
22
+ Requires-Python: >=3.10
23
23
  Requires-Dist: cryptography>=44.0.1
24
24
  Requires-Dist: protobuf>=6.32.1
25
25
  Requires-Dist: pytz
@@ -56,14 +56,18 @@ Requires-Dist: tzdata; extra == 'test'
56
56
  Requires-Dist: zstandard; extra == 'test'
57
57
  Description-Content-Type: text/markdown
58
58
 
59
- # PEP 249 Database API 2.0 Implementation
59
+ # ⚠️ PRIVATE PREVIEW DISCLAIMER ⚠️
60
60
 
61
- A Python library that implements [PEP 249 (Python Database API Specification 2.0)](https://peps.python.org/pep-0249/) with empty interface implementations. This library provides a complete skeleton implementation that follows the PEP 249 specification, making it an ideal starting point for creating new database drivers or for testing database API compliance.
61
+ **IMPORTANT:** This release contains a **Private Preview** version of the Snowflake DB driver. By downloading or using this software, you acknowledge and agree to the following conditions:
62
+
63
+ - **Restricted Access:** Usage of this driver is strictly limited to participants who are actively enrolled in the official Private Preview program for this specific driver. If you have not been explicitly invited and authorized to participate in this preview, do not download, install, or use this software.
64
+ - **Testing Environments Only:** For authorized Private Preview partners, this driver is provided solely for evaluation, feedback, and testing purposes. It must be deployed exclusively in isolated, non-production environments.
65
+ - **"As-Is" Software:** As a preview release, this driver is still under active development. It may contain bugs, lack features, or undergo significant breaking changes before general availability. It is provided "as-is" without any warranties, service level agreements (SLAs), or official support commitments.
62
66
 
63
67
  ## Development
64
68
 
65
69
  ### Prerequisites
66
- - Python 3.9+
70
+ - Python 3.10+
67
71
  - [uv](https://docs.astral.sh/uv/) package manager
68
72
  - [Hatch](https://hatch.pypa.io/) build tool
69
73
  - Rust toolchain (for building core library)
@@ -102,7 +106,7 @@ The `dev` environment is designed for **human developers** during active develop
102
106
  - Installs from sources (`skip-install = false`)
103
107
  - Editable mode enabled (`dev-mode = true`)
104
108
  - Changes to source code are immediately available
105
- - Supports Python matrix: 3.9, 3.10, 3.11, 3.12, 3.13
109
+ - Supports Python matrix: 3.10, 3.11, 3.12, 3.13, 3.14
106
110
 
107
111
  **Usage:**
108
112
  ```bash
@@ -165,8 +169,10 @@ hatch run test.py3.12:all
165
169
  hatch run precommit:check # Run all checks (format, lint, type)
166
170
  hatch run precommit:fix # Auto-fix formatting and linting issues
167
171
 
168
- # Reference connector tests (for compatibility testing)
169
- PYTHON_REFERENCE_DRIVER_VERSION=3.17.2 hatch run reference:test
172
+ # Reference connector tests (for compatibility testing, installs latest v4.x)
173
+ hatch run reference:test
174
+ # Pin a specific version if needed:
175
+ PYTHON_REFERENCE_DRIVER_VERSION='==4.3.0' hatch run reference:test
170
176
  ```
171
177
 
172
178
  ## References
@@ -1,11 +1,15 @@
1
- # PEP 249 Database API 2.0 Implementation
1
+ # ⚠️ PRIVATE PREVIEW DISCLAIMER ⚠️
2
2
 
3
- A Python library that implements [PEP 249 (Python Database API Specification 2.0)](https://peps.python.org/pep-0249/) with empty interface implementations. This library provides a complete skeleton implementation that follows the PEP 249 specification, making it an ideal starting point for creating new database drivers or for testing database API compliance.
3
+ **IMPORTANT:** This release contains a **Private Preview** version of the Snowflake DB driver. By downloading or using this software, you acknowledge and agree to the following conditions:
4
+
5
+ - **Restricted Access:** Usage of this driver is strictly limited to participants who are actively enrolled in the official Private Preview program for this specific driver. If you have not been explicitly invited and authorized to participate in this preview, do not download, install, or use this software.
6
+ - **Testing Environments Only:** For authorized Private Preview partners, this driver is provided solely for evaluation, feedback, and testing purposes. It must be deployed exclusively in isolated, non-production environments.
7
+ - **"As-Is" Software:** As a preview release, this driver is still under active development. It may contain bugs, lack features, or undergo significant breaking changes before general availability. It is provided "as-is" without any warranties, service level agreements (SLAs), or official support commitments.
4
8
 
5
9
  ## Development
6
10
 
7
11
  ### Prerequisites
8
- - Python 3.9+
12
+ - Python 3.10+
9
13
  - [uv](https://docs.astral.sh/uv/) package manager
10
14
  - [Hatch](https://hatch.pypa.io/) build tool
11
15
  - Rust toolchain (for building core library)
@@ -44,7 +48,7 @@ The `dev` environment is designed for **human developers** during active develop
44
48
  - Installs from sources (`skip-install = false`)
45
49
  - Editable mode enabled (`dev-mode = true`)
46
50
  - Changes to source code are immediately available
47
- - Supports Python matrix: 3.9, 3.10, 3.11, 3.12, 3.13
51
+ - Supports Python matrix: 3.10, 3.11, 3.12, 3.13, 3.14
48
52
 
49
53
  **Usage:**
50
54
  ```bash
@@ -107,8 +111,10 @@ hatch run test.py3.12:all
107
111
  hatch run precommit:check # Run all checks (format, lint, type)
108
112
  hatch run precommit:fix # Auto-fix formatting and linting issues
109
113
 
110
- # Reference connector tests (for compatibility testing)
111
- PYTHON_REFERENCE_DRIVER_VERSION=3.17.2 hatch run reference:test
114
+ # Reference connector tests (for compatibility testing, installs latest v4.x)
115
+ hatch run reference:test
116
+ # Pin a specific version if needed:
117
+ PYTHON_REFERENCE_DRIVER_VERSION='==4.3.0' hatch run reference:test
112
118
  ```
113
119
 
114
120
  ## References
@@ -150,8 +150,6 @@ message QueryStats {
150
150
  }
151
151
 
152
152
  // Describes one result set from a (possibly multi-statement) execution.
153
- // For single statements, returned inline in the execute response.
154
- // For multi-statement children, fetched lazily via StatementGetResultSet.
155
153
  message ResultSetDescriptor {
156
154
  string query_id = 1;
157
155
  repeated ColumnMetadata columns = 2;
@@ -161,6 +159,11 @@ message ResultSetDescriptor {
161
159
  optional QueryStats stats = 6;
162
160
  }
163
161
 
162
+ message ResultSetResponse {
163
+ ResultSetHandle result_set_handle = 1;
164
+ ResultSetDescriptor result_descriptor = 2;
165
+ }
166
+
164
167
  // Multi-statement execution: child query IDs and their statement types.
165
168
  message MultiStatementResult {
166
169
  ResultSetDescriptor parent = 1;
@@ -195,6 +198,12 @@ message StatementHandle {
195
198
  int64 magic = 2;
196
199
  }
197
200
 
201
+ // ResultSet handle
202
+ message ResultSetHandle {
203
+ int64 id = 1;
204
+ int64 magic = 2;
205
+ }
206
+
198
207
  // Arrow array stream pointer
199
208
  message ArrowArrayStreamPtr {
200
209
  bytes value = 1;
@@ -405,6 +414,14 @@ message ConnectionGetParameterResponse {
405
414
  optional string value = 1;
406
415
  }
407
416
 
417
+ message ConnectionGetAllParametersRequest {
418
+ ConnectionHandle conn_handle = 1;
419
+ }
420
+
421
+ message ConnectionGetAllParametersResponse {
422
+ map<string, string> parameters = 1;
423
+ }
424
+
408
425
  message ConnectionValidateOptionsRequest {
409
426
  ConnectionHandle conn_handle = 1;
410
427
  }
@@ -462,11 +479,6 @@ message ConnectionGetQueryResultRequest {
462
479
  string query_id = 2;
463
480
  }
464
481
 
465
- message ResultSetResponse {
466
- ResultSetDescriptor result_descriptor = 1;
467
- ArrowArrayStreamPtr stream = 2;
468
- }
469
-
470
482
  message ConnectionGetResultSetRequest {
471
483
  ConnectionHandle conn_handle = 1;
472
484
  string query_id = 2;
@@ -544,24 +556,18 @@ message StatementGetParameterSchemaResponse {
544
556
  message StatementExecuteQueryRequest {
545
557
  StatementHandle stmt_handle = 1;
546
558
  optional QueryBindings bindings = 2; // None = no bindings
559
+ optional uint32 timeout_seconds = 3; // 0 / absent = no timeout override
547
560
  }
548
561
 
549
562
  message ExecuteQueryResponse {
550
563
  oneof result {
551
- // Single statement — metadata available immediately.
552
- ResultSetDescriptor single = 1;
564
+ // Single statement — descriptor + result_set_handle for stream/chunks access.
565
+ ResultSetResponse single = 1;
553
566
  // Multi-statement — child query IDs only, fetch metadata lazily.
554
567
  MultiStatementResult multi = 2;
555
568
  }
556
569
  }
557
570
 
558
- // Fetch a result set by query_id: returns metadata + Arrow stream.
559
- // For multi-statement children, this triggers a lazy fetch in sf_core.
560
- message StatementGetResultSetRequest {
561
- StatementHandle stmt_handle = 1;
562
- string query_id = 2;
563
- }
564
-
565
571
  // Async query execution: submit and return immediately with query_id
566
572
  message StatementExecuteAsyncRequest {
567
573
  StatementHandle stmt_handle = 1;
@@ -617,45 +623,43 @@ message ResultChunk {
617
623
  int32 row_count = 4;
618
624
  }
619
625
 
620
- message ResultChunksResult {
621
- repeated ResultChunk chunks = 1;
622
- // Result column metadata. Required for CHUNK_FORMAT_JSON (forward verbatim on DatabaseFetchChunkRequest); ignored for CHUNK_FORMAT_ARROW_IPC.
623
- repeated ColumnMetadata columns = 2;
626
+
627
+ message DatabaseFetchChunkRequest {
628
+ DatabaseHandle db_handle = 1;
629
+ ResultChunk chunk = 2;
630
+ // Required when chunk.format == CHUNK_FORMAT_JSON (forward from ResultSetGetChunksResponse.columns); ignored for CHUNK_FORMAT_ARROW_IPC.
631
+ repeated ColumnMetadata columns = 3;
624
632
  }
625
633
 
626
- // Fetch raw result chunks for a query executed on this statement.
627
- // query_id identifies which query's chunks to return; for single-statement
628
- // executions this is the query_id from ExecuteQueryResponse, for
629
- // multi-statement children it is one of the query_ids from MultiStatementResult.
630
- message StatementResultChunksRequest {
631
- StatementHandle stmt_handle = 1;
632
- string query_id = 2;
634
+ message DatabaseFetchChunkResponse {
635
+ ArrowArrayStreamPtr stream = 1;
633
636
  }
634
637
 
635
- message StatementResultChunksResponse {
636
- ResultChunksResult result = 1;
638
+ // ResultSet RPCs
639
+
640
+ message ResultSetGetStreamRequest {
641
+ ResultSetHandle result_set_handle = 1;
637
642
  }
638
643
 
639
- // Fetch raw result chunks by query_id using the connection (no statement handle required).
640
- // Useful for multi-statement children after the batch statement handle has been released.
641
- message ConnectionResultChunksRequest {
642
- ConnectionHandle conn_handle = 1;
643
- string query_id = 2;
644
+ message ResultSetGetStreamResponse {
645
+ ArrowArrayStreamPtr stream = 1;
644
646
  }
645
647
 
646
- message ConnectionResultChunksResponse {
647
- ResultChunksResult result = 1;
648
+ message ResultSetGetChunksRequest {
649
+ ResultSetHandle result_set_handle = 1;
648
650
  }
649
651
 
650
- message DatabaseFetchChunkRequest {
651
- DatabaseHandle db_handle = 1;
652
- ResultChunk chunk = 2;
653
- // Required when chunk.format == CHUNK_FORMAT_JSON (forward verbatim from ResultChunksResult.columns); ignored for CHUNK_FORMAT_ARROW_IPC.
654
- repeated ColumnMetadata columns = 3;
652
+ message ResultSetGetChunksResponse {
653
+ repeated ResultChunk chunks = 1;
654
+ // Column metadata. Required for CHUNK_FORMAT_JSON (forward on DatabaseFetchChunkRequest); ignored for CHUNK_FORMAT_ARROW_IPC.
655
+ repeated ColumnMetadata columns = 2;
655
656
  }
656
657
 
657
- message DatabaseFetchChunkResponse {
658
- ArrowArrayStreamPtr stream = 1;
658
+ message ResultSetReleaseRequest {
659
+ ResultSetHandle result_set_handle = 1;
660
+ }
661
+
662
+ message ResultSetReleaseResponse {
659
663
  }
660
664
 
661
665
  // Validation issue reported during set or validate operations.
@@ -806,6 +810,8 @@ service DatabaseDriver {
806
810
  // gets cached session parameter. Cache is updated with subset of connection parameters
807
811
  // (chosen by server, included in HTTP response) after each query
808
812
  rpc ConnectionGetParameter(ConnectionGetParameterRequest) returns (ConnectionGetParameterResponse);
813
+ // gets all resolved session parameters at once
814
+ rpc ConnectionGetAllParameters(ConnectionGetAllParametersRequest) returns (ConnectionGetAllParametersResponse);
809
815
  // pre-flight validation of connection options - reports all issues at once
810
816
  rpc ConnectionValidateOptions(ConnectionValidateOptionsRequest) returns (ConnectionValidateOptionsResponse);
811
817
  // Fetch the result of a previously executed query by Snowflake Query ID
@@ -820,6 +826,7 @@ service DatabaseDriver {
820
826
  rpc ConnectionRequestToken(ConnectionTokenRequest) returns (ConnectionTokenResponse);
821
827
  // Heartbeat to validate connection and session are still alive
822
828
  rpc ConnectionHeartbeat(ConnectionHeartbeatRequest) returns (ConnectionHeartbeatResponse);
829
+
823
830
  // Statement operations
824
831
  rpc StatementNew(StatementNewRequest) returns (StatementNewResponse);
825
832
  rpc StatementRelease(StatementReleaseRequest) returns (StatementReleaseResponse);
@@ -829,13 +836,15 @@ service DatabaseDriver {
829
836
  rpc StatementSetOptions(StatementSetOptionsRequest) returns (StatementSetOptionsResponse);
830
837
  rpc StatementGetParameterSchema(StatementGetParameterSchemaRequest) returns (StatementGetParameterSchemaResponse);
831
838
  rpc StatementExecuteQuery(StatementExecuteQueryRequest) returns (ExecuteQueryResponse);
832
- rpc StatementGetResultSet(StatementGetResultSetRequest) returns (ResultSetResponse);
833
839
  rpc StatementExecutePartitions(StatementExecutePartitionsRequest) returns (StatementExecutePartitionsResponse);
834
840
  rpc StatementReadPartition(StatementReadPartitionRequest) returns (StatementReadPartitionResponse);
835
- rpc StatementResultChunks(StatementResultChunksRequest) returns (StatementResultChunksResponse);
836
- rpc ConnectionResultChunks(ConnectionResultChunksRequest) returns (ConnectionResultChunksResponse);
837
841
  rpc StatementExecuteAsync(StatementExecuteAsyncRequest) returns (StatementExecuteAsyncResponse);
838
842
 
843
+ // ResultSet operations
844
+ rpc ResultSetGetStream(ResultSetGetStreamRequest) returns (ResultSetGetStreamResponse);
845
+ rpc ResultSetGetChunks(ResultSetGetChunksRequest) returns (ResultSetGetChunksResponse);
846
+ rpc ResultSetRelease(ResultSetReleaseRequest) returns (ResultSetReleaseResponse);
847
+
839
848
  // Config operations
840
849
  rpc ConfigLoadAllSections(ConfigLoadAllSectionsRequest) returns (ConfigLoadAllSectionsResponse);
841
850
  rpc ConfigGetPaths(ConfigGetPathsRequest) returns (ConfigGetPathsResponse);