bigframes 1.41.0__tar.gz → 2.0.0.dev0__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 (679) hide show
  1. {bigframes-1.41.0/bigframes.egg-info → bigframes-2.0.0.dev0}/PKG-INFO +28 -3
  2. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/README.rst +24 -0
  3. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/bigframes/_config/bigquery_options.py +13 -14
  4. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/bigframes/_config/compute_options.py +19 -4
  5. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/bigframes/_config/experiment_options.py +16 -17
  6. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/bigframes/bigquery/__init__.py +3 -1
  7. bigframes-2.0.0.dev0/bigframes/bigquery/_operations/geo.py +305 -0
  8. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/bigframes/blob/_functions.py +78 -63
  9. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/bigframes/clients.py +64 -25
  10. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/bigframes/constants.py +17 -12
  11. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/bigframes/core/block_transforms.py +3 -3
  12. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/bigframes/core/blocks.py +101 -19
  13. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/bigframes/core/compile/aggregate_compiler.py +49 -45
  14. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/bigframes/core/compile/compiled.py +38 -15
  15. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/bigframes/core/compile/ibis_types.py +2 -1
  16. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/bigframes/core/compile/polars/compiler.py +15 -18
  17. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/bigframes/core/compile/scalar_op_compiler.py +19 -5
  18. bigframes-2.0.0.dev0/bigframes/core/groupby/__init__.py +18 -0
  19. bigframes-2.0.0.dev0/bigframes/core/groupby/aggs.py +26 -0
  20. bigframes-1.41.0/bigframes/core/groupby/__init__.py → bigframes-2.0.0.dev0/bigframes/core/groupby/dataframe_group_by.py +23 -303
  21. bigframes-2.0.0.dev0/bigframes/core/groupby/series_group_by.py +315 -0
  22. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/bigframes/core/indexers.py +35 -1
  23. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/bigframes/core/indexes/base.py +41 -10
  24. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/bigframes/core/reshape/tile.py +45 -7
  25. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/bigframes/core/utils.py +34 -1
  26. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/bigframes/core/window_spec.py +54 -17
  27. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/bigframes/dataframe.py +88 -15
  28. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/bigframes/exceptions.py +4 -0
  29. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/bigframes/functions/_function_client.py +69 -18
  30. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/bigframes/functions/_function_session.py +40 -61
  31. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/bigframes/functions/_utils.py +5 -2
  32. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/bigframes/functions/function.py +0 -1
  33. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/bigframes/geopandas/geoseries.py +7 -1
  34. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/bigframes/ml/core.py +10 -0
  35. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/bigframes/ml/linear_model.py +20 -0
  36. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/bigframes/ml/llm.py +25 -535
  37. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/bigframes/ml/loader.py +2 -7
  38. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/bigframes/ml/sql.py +6 -0
  39. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/bigframes/operations/__init__.py +4 -0
  40. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/bigframes/operations/aggregations.py +4 -2
  41. bigframes-2.0.0.dev0/bigframes/operations/ai.py +896 -0
  42. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/bigframes/operations/base.py +39 -45
  43. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/bigframes/operations/blob.py +116 -29
  44. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/bigframes/operations/geo_ops.py +8 -1
  45. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/bigframes/operations/semantics.py +15 -17
  46. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/bigframes/operations/type.py +14 -0
  47. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/bigframes/pandas/__init__.py +10 -4
  48. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/bigframes/series.py +43 -11
  49. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/bigframes/session/__init__.py +59 -46
  50. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/bigframes/session/_io/bigquery/__init__.py +1 -1
  51. bigframes-2.0.0.dev0/bigframes/session/bigquery_session.py +171 -0
  52. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/bigframes/session/clients.py +36 -47
  53. bigframes-2.0.0.dev0/bigframes/session/environment.py +102 -0
  54. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/bigframes/session/executor.py +7 -5
  55. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/bigframes/session/loader.py +6 -4
  56. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/bigframes/session/metrics.py +37 -23
  57. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/bigframes/session/temp_storage.py +21 -18
  58. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/bigframes/streaming/dataframe.py +2 -1
  59. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/bigframes/version.py +2 -2
  60. {bigframes-1.41.0 → bigframes-2.0.0.dev0/bigframes.egg-info}/PKG-INFO +28 -3
  61. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/bigframes.egg-info/SOURCES.txt +13 -0
  62. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/bigframes.egg-info/requires.txt +2 -2
  63. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/setup.py +3 -2
  64. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/tests/system/conftest.py +23 -3
  65. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/tests/system/large/blob/test_function.py +110 -0
  66. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/tests/system/large/functions/test_managed_function.py +78 -59
  67. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/tests/system/large/functions/test_remote_function.py +286 -137
  68. bigframes-2.0.0.dev0/tests/system/large/operations/test_ai.py +956 -0
  69. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/tests/system/large/test_location.py +75 -35
  70. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/tests/system/large/test_session.py +17 -12
  71. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/tests/system/load/test_llm.py +1 -2
  72. bigframes-2.0.0.dev0/tests/system/small/bigquery/test_geo.py +240 -0
  73. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/tests/system/small/bigquery/test_json.py +27 -62
  74. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/tests/system/small/blob/test_properties.py +1 -4
  75. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/tests/system/small/functions/test_remote_function.py +157 -102
  76. bigframes-2.0.0.dev0/tests/system/small/geopandas/test_geoseries.py +401 -0
  77. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/tests/system/small/ml/conftest.py +26 -58
  78. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/tests/system/small/ml/test_core.py +0 -21
  79. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/tests/system/small/ml/test_linear_model.py +36 -0
  80. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/tests/system/small/ml/test_llm.py +26 -248
  81. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/tests/system/small/ml/test_register.py +1 -10
  82. bigframes-2.0.0.dev0/tests/system/small/operations/test_ai.py +141 -0
  83. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/tests/system/small/operations/test_semantics.py +19 -0
  84. bigframes-2.0.0.dev0/tests/system/small/test_bq_sessions.py +80 -0
  85. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/tests/system/small/test_dataframe.py +38 -9
  86. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/tests/system/small/test_dataframe_io.py +8 -138
  87. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/tests/system/small/test_encryption.py +2 -2
  88. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/tests/system/small/test_index.py +9 -0
  89. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/tests/system/small/test_pandas.py +169 -79
  90. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/tests/system/small/test_progress_bar.py +13 -0
  91. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/tests/system/small/test_series.py +62 -22
  92. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/tests/system/small/test_session.py +201 -9
  93. bigframes-2.0.0.dev0/tests/system/small/test_window.py +190 -0
  94. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/tests/system/utils.py +17 -1
  95. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/tests/unit/_config/test_bigquery_options.py +7 -0
  96. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/tests/unit/_config/test_experiment_options.py +11 -11
  97. bigframes-2.0.0.dev0/tests/unit/bigquery/test_json.py +26 -0
  98. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/tests/unit/core/test_blocks.py +8 -0
  99. bigframes-2.0.0.dev0/tests/unit/core/test_windowspec.py +50 -0
  100. bigframes-2.0.0.dev0/tests/unit/functions/__init__.py +13 -0
  101. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/tests/unit/functions/test_remote_function.py +9 -3
  102. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/tests/unit/session/test_clients.py +68 -0
  103. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/tests/unit/session/test_session.py +33 -0
  104. bigframes-2.0.0.dev0/tests/unit/test_clients.py +67 -0
  105. bigframes-2.0.0.dev0/tests/unit/test_daemon.py +42 -0
  106. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/tests/unit/test_dataframe.py +11 -0
  107. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/tests/unit/test_pandas.py +51 -6
  108. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/geopandas/geoseries.py +193 -0
  109. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/pandas/core/frame.py +4 -4
  110. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/pandas/core/generic.py +23 -0
  111. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/pandas/core/reshape/tile.py +14 -7
  112. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/pandas/core/series.py +5 -4
  113. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/version.py +2 -2
  114. bigframes-1.41.0/bigframes/bigquery/_operations/geo.py +0 -93
  115. bigframes-1.41.0/tests/system/small/bigquery/test_geo.py +0 -53
  116. bigframes-1.41.0/tests/system/small/geopandas/test_geoseries.py +0 -196
  117. bigframes-1.41.0/tests/system/small/test_window.py +0 -95
  118. bigframes-1.41.0/tests/unit/test_clients.py +0 -49
  119. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/LICENSE +0 -0
  120. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/MANIFEST.in +0 -0
  121. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/bigframes/__init__.py +0 -0
  122. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/bigframes/_config/__init__.py +0 -0
  123. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/bigframes/_config/display_options.py +0 -0
  124. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/bigframes/_config/sampling_options.py +0 -0
  125. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/bigframes/bigquery/_operations/__init__.py +0 -0
  126. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/bigframes/bigquery/_operations/approx_agg.py +0 -0
  127. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/bigframes/bigquery/_operations/array.py +0 -0
  128. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/bigframes/bigquery/_operations/datetime.py +0 -0
  129. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/bigframes/bigquery/_operations/json.py +0 -0
  130. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/bigframes/bigquery/_operations/search.py +0 -0
  131. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/bigframes/bigquery/_operations/sql.py +0 -0
  132. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/bigframes/bigquery/_operations/struct.py +0 -0
  133. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/bigframes/core/__init__.py +0 -0
  134. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/bigframes/core/array_value.py +0 -0
  135. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/bigframes/core/bigframe_node.py +0 -0
  136. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/bigframes/core/compile/__init__.py +0 -0
  137. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/bigframes/core/compile/api.py +0 -0
  138. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/bigframes/core/compile/compiler.py +0 -0
  139. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/bigframes/core/compile/concat.py +0 -0
  140. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/bigframes/core/compile/constants.py +0 -0
  141. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/bigframes/core/compile/default_ordering.py +0 -0
  142. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/bigframes/core/compile/explode.py +0 -0
  143. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/bigframes/core/compile/googlesql/__init__.py +0 -0
  144. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/bigframes/core/compile/googlesql/abc.py +0 -0
  145. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/bigframes/core/compile/googlesql/datatype.py +0 -0
  146. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/bigframes/core/compile/googlesql/expression.py +0 -0
  147. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/bigframes/core/compile/googlesql/function.py +0 -0
  148. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/bigframes/core/compile/googlesql/query.py +0 -0
  149. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/bigframes/core/compile/polars/__init__.py +0 -0
  150. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/bigframes/core/compile/schema_translator.py +0 -0
  151. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/bigframes/core/convert.py +0 -0
  152. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/bigframes/core/eval.py +0 -0
  153. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/bigframes/core/explode.py +0 -0
  154. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/bigframes/core/expression.py +0 -0
  155. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/bigframes/core/global_session.py +0 -0
  156. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/bigframes/core/guid.py +0 -0
  157. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/bigframes/core/identifiers.py +0 -0
  158. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/bigframes/core/indexes/__init__.py +0 -0
  159. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/bigframes/core/indexes/multi.py +0 -0
  160. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/bigframes/core/join_def.py +0 -0
  161. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/bigframes/core/local_data.py +0 -0
  162. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/bigframes/core/log_adapter.py +0 -0
  163. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/bigframes/core/nodes.py +0 -0
  164. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/bigframes/core/ordering.py +0 -0
  165. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/bigframes/core/pruning.py +0 -0
  166. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/bigframes/core/reshape/__init__.py +0 -0
  167. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/bigframes/core/reshape/api.py +0 -0
  168. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/bigframes/core/reshape/concat.py +0 -0
  169. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/bigframes/core/reshape/encoding.py +0 -0
  170. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/bigframes/core/reshape/merge.py +0 -0
  171. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/bigframes/core/rewrite/__init__.py +0 -0
  172. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/bigframes/core/rewrite/identifiers.py +0 -0
  173. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/bigframes/core/rewrite/implicit_align.py +0 -0
  174. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/bigframes/core/rewrite/legacy_align.py +0 -0
  175. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/bigframes/core/rewrite/order.py +0 -0
  176. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/bigframes/core/rewrite/pruning.py +0 -0
  177. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/bigframes/core/rewrite/slices.py +0 -0
  178. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/bigframes/core/rewrite/timedeltas.py +0 -0
  179. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/bigframes/core/scalar.py +0 -0
  180. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/bigframes/core/schema.py +0 -0
  181. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/bigframes/core/slices.py +0 -0
  182. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/bigframes/core/sql.py +0 -0
  183. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/bigframes/core/tools/__init__.py +0 -0
  184. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/bigframes/core/tools/datetimes.py +0 -0
  185. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/bigframes/core/tree_properties.py +0 -0
  186. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/bigframes/core/validations.py +0 -0
  187. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/bigframes/core/window/__init__.py +0 -0
  188. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/bigframes/dtypes.py +0 -0
  189. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/bigframes/enums.py +0 -0
  190. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/bigframes/features.py +0 -0
  191. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/bigframes/formatting_helpers.py +0 -0
  192. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/bigframes/functions/__init__.py +0 -0
  193. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/bigframes/functions/function_template.py +0 -0
  194. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/bigframes/geopandas/__init__.py +0 -0
  195. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/bigframes/ml/__init__.py +0 -0
  196. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/bigframes/ml/base.py +0 -0
  197. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/bigframes/ml/cluster.py +0 -0
  198. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/bigframes/ml/compose.py +0 -0
  199. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/bigframes/ml/decomposition.py +0 -0
  200. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/bigframes/ml/ensemble.py +0 -0
  201. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/bigframes/ml/forecasting.py +0 -0
  202. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/bigframes/ml/globals.py +0 -0
  203. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/bigframes/ml/imported.py +0 -0
  204. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/bigframes/ml/impute.py +0 -0
  205. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/bigframes/ml/metrics/__init__.py +0 -0
  206. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/bigframes/ml/metrics/_metrics.py +0 -0
  207. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/bigframes/ml/metrics/pairwise.py +0 -0
  208. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/bigframes/ml/model_selection.py +0 -0
  209. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/bigframes/ml/pipeline.py +0 -0
  210. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/bigframes/ml/preprocessing.py +0 -0
  211. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/bigframes/ml/remote.py +0 -0
  212. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/bigframes/ml/utils.py +0 -0
  213. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/bigframes/operations/_matplotlib/__init__.py +0 -0
  214. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/bigframes/operations/_matplotlib/core.py +0 -0
  215. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/bigframes/operations/_matplotlib/hist.py +0 -0
  216. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/bigframes/operations/_op_converters.py +0 -0
  217. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/bigframes/operations/array_ops.py +0 -0
  218. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/bigframes/operations/base_ops.py +0 -0
  219. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/bigframes/operations/blob_ops.py +0 -0
  220. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/bigframes/operations/bool_ops.py +0 -0
  221. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/bigframes/operations/comparison_ops.py +0 -0
  222. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/bigframes/operations/date_ops.py +0 -0
  223. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/bigframes/operations/datetime_ops.py +0 -0
  224. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/bigframes/operations/datetimes.py +0 -0
  225. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/bigframes/operations/distance_ops.py +0 -0
  226. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/bigframes/operations/frequency_ops.py +0 -0
  227. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/bigframes/operations/generic_ops.py +0 -0
  228. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/bigframes/operations/json_ops.py +0 -0
  229. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/bigframes/operations/lists.py +0 -0
  230. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/bigframes/operations/numeric_ops.py +0 -0
  231. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/bigframes/operations/numpy_op_maps.py +0 -0
  232. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/bigframes/operations/plotting.py +0 -0
  233. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/bigframes/operations/remote_function_ops.py +0 -0
  234. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/bigframes/operations/string_ops.py +0 -0
  235. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/bigframes/operations/strings.py +0 -0
  236. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/bigframes/operations/struct_ops.py +0 -0
  237. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/bigframes/operations/structs.py +0 -0
  238. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/bigframes/operations/time_ops.py +0 -0
  239. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/bigframes/operations/timedelta_ops.py +0 -0
  240. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/bigframes/pandas/core/__init__.py +0 -0
  241. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/bigframes/pandas/core/api.py +0 -0
  242. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/bigframes/pandas/core/tools/__init__.py +0 -0
  243. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/bigframes/pandas/core/tools/timedeltas.py +0 -0
  244. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/bigframes/pandas/io/__init__.py +0 -0
  245. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/bigframes/pandas/io/api.py +0 -0
  246. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/bigframes/py.typed +0 -0
  247. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/bigframes/session/_io/__init__.py +0 -0
  248. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/bigframes/session/_io/bigquery/read_gbq_table.py +0 -0
  249. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/bigframes/session/_io/pandas.py +0 -0
  250. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/bigframes/session/planner.py +0 -0
  251. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/bigframes/session/time.py +0 -0
  252. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/bigframes/session/validation.py +0 -0
  253. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/bigframes/streaming/__init__.py +0 -0
  254. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/bigframes.egg-info/dependency_links.txt +0 -0
  255. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/bigframes.egg-info/not-zip-safe +0 -0
  256. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/bigframes.egg-info/top_level.txt +0 -0
  257. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/pyproject.toml +0 -0
  258. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/setup.cfg +0 -0
  259. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/tests/__init__.py +0 -0
  260. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/tests/benchmark/README.md +0 -0
  261. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/tests/benchmark/__init__.py +0 -0
  262. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/tests/benchmark/db_benchmark/groupby/config.jsonl +0 -0
  263. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/tests/benchmark/db_benchmark/groupby/q1.py +0 -0
  264. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/tests/benchmark/db_benchmark/groupby/q10.py +0 -0
  265. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/tests/benchmark/db_benchmark/groupby/q2.py +0 -0
  266. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/tests/benchmark/db_benchmark/groupby/q3.py +0 -0
  267. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/tests/benchmark/db_benchmark/groupby/q4.py +0 -0
  268. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/tests/benchmark/db_benchmark/groupby/q5.py +0 -0
  269. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/tests/benchmark/db_benchmark/groupby/q6.py +0 -0
  270. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/tests/benchmark/db_benchmark/groupby/q7.py +0 -0
  271. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/tests/benchmark/db_benchmark/groupby/q8.py +0 -0
  272. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/tests/benchmark/db_benchmark/join/config.jsonl +0 -0
  273. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/tests/benchmark/db_benchmark/join/q1.py +0 -0
  274. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/tests/benchmark/db_benchmark/join/q2.py +0 -0
  275. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/tests/benchmark/db_benchmark/join/q3.py +0 -0
  276. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/tests/benchmark/db_benchmark/join/q4.py +0 -0
  277. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/tests/benchmark/db_benchmark/join/q5.py +0 -0
  278. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/tests/benchmark/db_benchmark/sort/config.jsonl +0 -0
  279. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/tests/benchmark/db_benchmark/sort/q1.py +0 -0
  280. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/tests/benchmark/tpch/config.jsonl +0 -0
  281. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/tests/benchmark/tpch/q1.py +0 -0
  282. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/tests/benchmark/tpch/q10.py +0 -0
  283. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/tests/benchmark/tpch/q11.py +0 -0
  284. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/tests/benchmark/tpch/q12.py +0 -0
  285. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/tests/benchmark/tpch/q13.py +0 -0
  286. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/tests/benchmark/tpch/q14.py +0 -0
  287. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/tests/benchmark/tpch/q15.py +0 -0
  288. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/tests/benchmark/tpch/q16.py +0 -0
  289. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/tests/benchmark/tpch/q17.py +0 -0
  290. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/tests/benchmark/tpch/q18.py +0 -0
  291. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/tests/benchmark/tpch/q19.py +0 -0
  292. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/tests/benchmark/tpch/q2.py +0 -0
  293. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/tests/benchmark/tpch/q20.py +0 -0
  294. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/tests/benchmark/tpch/q21.py +0 -0
  295. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/tests/benchmark/tpch/q22.py +0 -0
  296. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/tests/benchmark/tpch/q3.py +0 -0
  297. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/tests/benchmark/tpch/q4.py +0 -0
  298. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/tests/benchmark/tpch/q5.py +0 -0
  299. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/tests/benchmark/tpch/q6.py +0 -0
  300. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/tests/benchmark/tpch/q7.py +0 -0
  301. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/tests/benchmark/tpch/q8.py +0 -0
  302. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/tests/benchmark/tpch/q9.py +0 -0
  303. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/tests/benchmark/utils.py +0 -0
  304. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/tests/data/hockey_players.json +0 -0
  305. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/tests/data/hockey_players.jsonl +0 -0
  306. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/tests/data/json.jsonl +0 -0
  307. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/tests/data/json_schema.json +0 -0
  308. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/tests/data/matrix_2by3.json +0 -0
  309. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/tests/data/matrix_2by3.jsonl +0 -0
  310. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/tests/data/matrix_3by4.json +0 -0
  311. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/tests/data/matrix_3by4.jsonl +0 -0
  312. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/tests/data/nested.jsonl +0 -0
  313. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/tests/data/nested_schema.json +0 -0
  314. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/tests/data/nested_structs.jsonl +0 -0
  315. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/tests/data/nested_structs_schema.json +0 -0
  316. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/tests/data/penguins.jsonl +0 -0
  317. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/tests/data/penguins_schema.json +0 -0
  318. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/tests/data/people.csv +0 -0
  319. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/tests/data/repeated.jsonl +0 -0
  320. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/tests/data/repeated_schema.json +0 -0
  321. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/tests/data/scalars.jsonl +0 -0
  322. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/tests/data/scalars_schema.json +0 -0
  323. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/tests/data/time_series.jsonl +0 -0
  324. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/tests/data/time_series_schema.json +0 -0
  325. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/tests/data/urban_areas.jsonl +0 -0
  326. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/tests/data/urban_areas_schema.json +0 -0
  327. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/tests/system/__init__.py +0 -0
  328. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/tests/system/large/__init__.py +0 -0
  329. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/tests/system/large/functions/__init__.py +0 -0
  330. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/tests/system/large/ml/test_cluster.py +0 -0
  331. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/tests/system/large/ml/test_compose.py +0 -0
  332. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/tests/system/large/ml/test_core.py +0 -0
  333. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/tests/system/large/ml/test_decomposition.py +0 -0
  334. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/tests/system/large/ml/test_ensemble.py +0 -0
  335. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/tests/system/large/ml/test_forecasting.py +0 -0
  336. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/tests/system/large/ml/test_linear_model.py +0 -0
  337. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/tests/system/large/ml/test_model_selection.py +0 -0
  338. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/tests/system/large/ml/test_pipeline.py +0 -0
  339. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/tests/system/large/operations/__init__.py +0 -0
  340. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/tests/system/large/operations/conftest.py +0 -0
  341. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/tests/system/large/operations/test_semantics.py +0 -0
  342. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/tests/system/large/test_dataframe.py +0 -0
  343. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/tests/system/large/test_dataframe_io.py +0 -0
  344. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/tests/system/large/test_streaming.py +0 -0
  345. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/tests/system/load/conftest.py +0 -0
  346. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/tests/system/load/test_large_tables.py +0 -0
  347. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/tests/system/small/__init__.py +0 -0
  348. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/tests/system/small/bigquery/__init__.py +0 -0
  349. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/tests/system/small/bigquery/test_approx_agg.py +0 -0
  350. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/tests/system/small/bigquery/test_array.py +0 -0
  351. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/tests/system/small/bigquery/test_datetime.py +0 -0
  352. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/tests/system/small/bigquery/test_sql.py +0 -0
  353. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/tests/system/small/bigquery/test_struct.py +0 -0
  354. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/tests/system/small/bigquery/test_vector_search.py +0 -0
  355. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/tests/system/small/blob/test_io.py +0 -0
  356. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/tests/system/small/blob/test_urls.py +0 -0
  357. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/tests/system/small/core/__init__.py +0 -0
  358. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/tests/system/small/core/test_convert.py +0 -0
  359. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/tests/system/small/core/test_indexers.py +0 -0
  360. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/tests/system/small/functions/__init__.py +0 -0
  361. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/tests/system/small/ml/__init__.py +0 -0
  362. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/tests/system/small/ml/test_cluster.py +0 -0
  363. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/tests/system/small/ml/test_decomposition.py +0 -0
  364. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/tests/system/small/ml/test_ensemble.py +0 -0
  365. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/tests/system/small/ml/test_forecasting.py +0 -0
  366. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/tests/system/small/ml/test_imported.py +0 -0
  367. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/tests/system/small/ml/test_impute.py +0 -0
  368. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/tests/system/small/ml/test_metrics.py +0 -0
  369. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/tests/system/small/ml/test_metrics_pairwise.py +0 -0
  370. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/tests/system/small/ml/test_model_selection.py +0 -0
  371. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/tests/system/small/ml/test_preprocessing.py +0 -0
  372. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/tests/system/small/ml/test_remote.py +0 -0
  373. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/tests/system/small/ml/test_utils.py +0 -0
  374. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/tests/system/small/operations/__init__.py +0 -0
  375. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/tests/system/small/operations/test_dates.py +0 -0
  376. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/tests/system/small/operations/test_datetimes.py +0 -0
  377. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/tests/system/small/operations/test_lists.py +0 -0
  378. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/tests/system/small/operations/test_plotting.py +0 -0
  379. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/tests/system/small/operations/test_strings.py +0 -0
  380. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/tests/system/small/operations/test_struct.py +0 -0
  381. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/tests/system/small/operations/test_timedeltas.py +0 -0
  382. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/tests/system/small/regression/test_issue355_merge_after_filter.py +0 -0
  383. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/tests/system/small/test_groupby.py +0 -0
  384. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/tests/system/small/test_index_io.py +0 -0
  385. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/tests/system/small/test_ipython.py +0 -0
  386. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/tests/system/small/test_multiindex.py +0 -0
  387. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/tests/system/small/test_null_index.py +0 -0
  388. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/tests/system/small/test_numpy.py +0 -0
  389. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/tests/system/small/test_pandas_options.py +0 -0
  390. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/tests/system/small/test_scalar.py +0 -0
  391. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/tests/system/small/test_series_io.py +0 -0
  392. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/tests/system/small/test_unordered.py +0 -0
  393. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/tests/unit/__init__.py +0 -0
  394. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/tests/unit/_config/__init__.py +0 -0
  395. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/tests/unit/_config/test_threaded_options.py +0 -0
  396. {bigframes-1.41.0/tests/unit/functions → bigframes-2.0.0.dev0/tests/unit/bigquery}/__init__.py +0 -0
  397. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/tests/unit/core/__init__.py +0 -0
  398. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/tests/unit/core/compile/__init__.py +0 -0
  399. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/tests/unit/core/compile/googlesql/__init__.py +0 -0
  400. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/tests/unit/core/compile/googlesql/test_expression.py +0 -0
  401. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/tests/unit/core/compile/googlesql/test_function.py +0 -0
  402. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/tests/unit/core/compile/googlesql/test_query.py +0 -0
  403. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/tests/unit/core/test_bf_utils.py +0 -0
  404. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/tests/unit/core/test_dtypes.py +0 -0
  405. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/tests/unit/core/test_expression.py +0 -0
  406. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/tests/unit/core/test_indexes.py +0 -0
  407. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/tests/unit/core/test_log_adapter.py +0 -0
  408. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/tests/unit/core/test_rewrite.py +0 -0
  409. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/tests/unit/core/test_slices.py +0 -0
  410. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/tests/unit/core/test_sql.py +0 -0
  411. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/tests/unit/functions/test_function_template.py +0 -0
  412. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/tests/unit/functions/test_remote_function_utils.py +0 -0
  413. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/tests/unit/ml/__init__.py +0 -0
  414. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/tests/unit/ml/test_api_primitives.py +0 -0
  415. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/tests/unit/ml/test_compose.py +0 -0
  416. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/tests/unit/ml/test_forecasting.py +0 -0
  417. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/tests/unit/ml/test_golden_sql.py +0 -0
  418. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/tests/unit/ml/test_pipeline.py +0 -0
  419. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/tests/unit/ml/test_sql.py +0 -0
  420. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/tests/unit/operations/__init__.py +0 -0
  421. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/tests/unit/polars_session.py +0 -0
  422. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/tests/unit/resources.py +0 -0
  423. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/tests/unit/session/__init__.py +0 -0
  424. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/tests/unit/session/test_io_bigquery.py +0 -0
  425. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/tests/unit/session/test_io_pandas.py +0 -0
  426. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/tests/unit/session/test_read_gbq_table.py +0 -0
  427. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/tests/unit/session/test_time.py +0 -0
  428. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/tests/unit/test_constants.py +0 -0
  429. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/tests/unit/test_dataframe_io.py +0 -0
  430. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/tests/unit/test_features.py +0 -0
  431. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/tests/unit/test_formatting_helpers.py +0 -0
  432. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/tests/unit/test_local_engine.py +0 -0
  433. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/tests/unit/test_notebook.py +0 -0
  434. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/tests/unit/test_planner.py +0 -0
  435. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/tests/unit/test_series.py +0 -0
  436. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/tests/unit/test_series_io.py +0 -0
  437. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/__init__.py +0 -0
  438. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/constants.py +0 -0
  439. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/cpython/LICENSE +0 -0
  440. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/cpython/__init__.py +0 -0
  441. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/cpython/_pprint.py +0 -0
  442. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/db_benchmark/LICENSE +0 -0
  443. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/db_benchmark/METADATA +0 -0
  444. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/db_benchmark/README.md +0 -0
  445. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/db_benchmark/__init__.py +0 -0
  446. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/db_benchmark/groupby_queries.py +0 -0
  447. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/db_benchmark/join_queries.py +0 -0
  448. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/db_benchmark/sort_queries.py +0 -0
  449. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/geopandas/LICENSE.txt +0 -0
  450. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/google_cloud_bigquery/LICENSE +0 -0
  451. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/google_cloud_bigquery/__init__.py +0 -0
  452. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/google_cloud_bigquery/_pandas_helpers.py +0 -0
  453. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/google_cloud_bigquery/tests/__init__.py +0 -0
  454. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/google_cloud_bigquery/tests/unit/__init__.py +0 -0
  455. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/google_cloud_bigquery/tests/unit/test_pandas_helpers.py +0 -0
  456. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/ibis/LICENSE.txt +0 -0
  457. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/ibis/README.md +0 -0
  458. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/ibis/__init__.py +0 -0
  459. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/ibis/backends/__init__.py +0 -0
  460. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/ibis/backends/bigquery/__init__.py +0 -0
  461. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/ibis/backends/bigquery/backend.py +0 -0
  462. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/ibis/backends/bigquery/client.py +0 -0
  463. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/ibis/backends/bigquery/converter.py +0 -0
  464. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/ibis/backends/bigquery/datatypes.py +0 -0
  465. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/ibis/backends/bigquery/udf/__init__.py +0 -0
  466. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/ibis/backends/bigquery/udf/core.py +0 -0
  467. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/ibis/backends/bigquery/udf/find.py +0 -0
  468. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/ibis/backends/bigquery/udf/rewrite.py +0 -0
  469. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/ibis/backends/sql/__init__.py +0 -0
  470. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/ibis/backends/sql/compilers/__init__.py +0 -0
  471. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/ibis/backends/sql/compilers/base.py +0 -0
  472. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/ibis/backends/sql/compilers/bigquery/__init__.py +0 -0
  473. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/ibis/backends/sql/datatypes.py +0 -0
  474. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/ibis/backends/sql/rewrites.py +0 -0
  475. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/ibis/common/__init__.py +0 -0
  476. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/ibis/common/annotations.py +0 -0
  477. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/ibis/common/bases.py +0 -0
  478. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/ibis/common/caching.py +0 -0
  479. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/ibis/common/collections.py +0 -0
  480. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/ibis/common/deferred.py +0 -0
  481. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/ibis/common/dispatch.py +0 -0
  482. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/ibis/common/egraph.py +0 -0
  483. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/ibis/common/exceptions.py +0 -0
  484. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/ibis/common/graph.py +0 -0
  485. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/ibis/common/grounds.py +0 -0
  486. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/ibis/common/numeric.py +0 -0
  487. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/ibis/common/patterns.py +0 -0
  488. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/ibis/common/selectors.py +0 -0
  489. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/ibis/common/temporal.py +0 -0
  490. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/ibis/common/typing.py +0 -0
  491. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/ibis/config.py +0 -0
  492. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/ibis/expr/__init__.py +0 -0
  493. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/ibis/expr/api.py +0 -0
  494. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/ibis/expr/builders.py +0 -0
  495. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/ibis/expr/datashape.py +0 -0
  496. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/ibis/expr/datatypes/__init__.py +0 -0
  497. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/ibis/expr/datatypes/cast.py +0 -0
  498. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/ibis/expr/datatypes/core.py +0 -0
  499. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/ibis/expr/datatypes/parse.py +0 -0
  500. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/ibis/expr/datatypes/value.py +0 -0
  501. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/ibis/expr/decompile.py +0 -0
  502. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/ibis/expr/format.py +0 -0
  503. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/ibis/expr/operations/__init__.py +0 -0
  504. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/ibis/expr/operations/analytic.py +0 -0
  505. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/ibis/expr/operations/arrays.py +0 -0
  506. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/ibis/expr/operations/core.py +0 -0
  507. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/ibis/expr/operations/generic.py +0 -0
  508. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/ibis/expr/operations/geospatial.py +0 -0
  509. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/ibis/expr/operations/histograms.py +0 -0
  510. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/ibis/expr/operations/json.py +0 -0
  511. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/ibis/expr/operations/logical.py +0 -0
  512. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/ibis/expr/operations/maps.py +0 -0
  513. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/ibis/expr/operations/numeric.py +0 -0
  514. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/ibis/expr/operations/reductions.py +0 -0
  515. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/ibis/expr/operations/relations.py +0 -0
  516. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/ibis/expr/operations/sortkeys.py +0 -0
  517. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/ibis/expr/operations/strings.py +0 -0
  518. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/ibis/expr/operations/structs.py +0 -0
  519. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/ibis/expr/operations/subqueries.py +0 -0
  520. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/ibis/expr/operations/temporal.py +0 -0
  521. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/ibis/expr/operations/udf.py +0 -0
  522. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/ibis/expr/operations/window.py +0 -0
  523. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/ibis/expr/rewrites.py +0 -0
  524. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/ibis/expr/rules.py +0 -0
  525. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/ibis/expr/schema.py +0 -0
  526. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/ibis/expr/sql.py +0 -0
  527. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/ibis/expr/types/__init__.py +0 -0
  528. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/ibis/expr/types/arrays.py +0 -0
  529. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/ibis/expr/types/binary.py +0 -0
  530. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/ibis/expr/types/core.py +0 -0
  531. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/ibis/expr/types/dataframe_interchange.py +0 -0
  532. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/ibis/expr/types/generic.py +0 -0
  533. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/ibis/expr/types/geospatial.py +0 -0
  534. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/ibis/expr/types/groupby.py +0 -0
  535. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/ibis/expr/types/joins.py +0 -0
  536. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/ibis/expr/types/json.py +0 -0
  537. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/ibis/expr/types/logical.py +0 -0
  538. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/ibis/expr/types/maps.py +0 -0
  539. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/ibis/expr/types/numeric.py +0 -0
  540. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/ibis/expr/types/pretty.py +0 -0
  541. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/ibis/expr/types/relations.py +0 -0
  542. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/ibis/expr/types/strings.py +0 -0
  543. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/ibis/expr/types/structs.py +0 -0
  544. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/ibis/expr/types/temporal.py +0 -0
  545. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/ibis/expr/types/temporal_windows.py +0 -0
  546. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/ibis/expr/types/typing.py +0 -0
  547. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/ibis/expr/types/uuid.py +0 -0
  548. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/ibis/expr/visualize.py +0 -0
  549. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/ibis/formats/__init__.py +0 -0
  550. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/ibis/formats/numpy.py +0 -0
  551. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/ibis/formats/pandas.py +0 -0
  552. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/ibis/formats/polars.py +0 -0
  553. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/ibis/formats/pyarrow.py +0 -0
  554. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/ibis/selectors.py +0 -0
  555. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/ibis/util.py +0 -0
  556. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/pandas/AUTHORS.md +0 -0
  557. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/pandas/LICENSE +0 -0
  558. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/pandas/README.md +0 -0
  559. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/pandas/__init__.py +0 -0
  560. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/pandas/_config/config.py +0 -0
  561. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/pandas/core/arrays/__init__.py +0 -0
  562. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/pandas/core/arrays/arrow/__init__.py +0 -0
  563. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/pandas/core/arrays/arrow/accessors.py +0 -0
  564. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/pandas/core/arrays/datetimelike.py +0 -0
  565. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/pandas/core/common.py +0 -0
  566. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/pandas/core/computation/align.py +0 -0
  567. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/pandas/core/computation/common.py +0 -0
  568. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/pandas/core/computation/engines.py +0 -0
  569. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/pandas/core/computation/eval.py +0 -0
  570. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/pandas/core/computation/expr.py +0 -0
  571. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/pandas/core/computation/ops.py +0 -0
  572. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/pandas/core/computation/parsing.py +0 -0
  573. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/pandas/core/computation/scope.py +0 -0
  574. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/pandas/core/config_init.py +0 -0
  575. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/pandas/core/dtypes/inference.py +0 -0
  576. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/pandas/core/groupby/__init__.py +0 -0
  577. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/pandas/core/indexes/__init__.py +0 -0
  578. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/pandas/core/indexes/accessor.py +0 -0
  579. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/pandas/core/indexes/base.py +0 -0
  580. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/pandas/core/indexes/multi.py +0 -0
  581. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/pandas/core/indexing.py +0 -0
  582. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/pandas/core/reshape/__init__.py +0 -0
  583. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/pandas/core/reshape/concat.py +0 -0
  584. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/pandas/core/reshape/encoding.py +0 -0
  585. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/pandas/core/reshape/merge.py +0 -0
  586. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/pandas/core/strings/accessor.py +0 -0
  587. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/pandas/core/tools/__init__.py +0 -0
  588. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/pandas/core/tools/datetimes.py +0 -0
  589. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/pandas/core/tools/timedeltas.py +0 -0
  590. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/pandas/core/window/__init__.py +0 -0
  591. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/pandas/core/window/rolling.py +0 -0
  592. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/pandas/io/__init__.py +0 -0
  593. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/pandas/io/common.py +0 -0
  594. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/pandas/io/gbq.py +0 -0
  595. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/pandas/io/parquet.py +0 -0
  596. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/pandas/io/parsers/__init__.py +0 -0
  597. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/pandas/io/parsers/readers.py +0 -0
  598. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/pandas/io/pickle.py +0 -0
  599. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/pandas/pandas/_typing.py +0 -0
  600. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/pandas/plotting/_core.py +0 -0
  601. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/pandas/util/_exceptions.py +0 -0
  602. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/pandas/util/_validators.py +0 -0
  603. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/py.typed +0 -0
  604. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/sklearn/COPYING +0 -0
  605. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/sklearn/__init__.py +0 -0
  606. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/sklearn/base.py +0 -0
  607. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/sklearn/cluster/_kmeans.py +0 -0
  608. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/sklearn/compose/_column_transformer.py +0 -0
  609. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/sklearn/decomposition/_pca.py +0 -0
  610. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/sklearn/ensemble/__init__.py +0 -0
  611. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/sklearn/ensemble/_forest.py +0 -0
  612. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/sklearn/impute/_base.py +0 -0
  613. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/sklearn/linear_model/_base.py +0 -0
  614. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/sklearn/linear_model/_logistic.py +0 -0
  615. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/sklearn/metrics/_classification.py +0 -0
  616. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/sklearn/metrics/_ranking.py +0 -0
  617. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/sklearn/metrics/_regression.py +0 -0
  618. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/sklearn/metrics/pairwise.py +0 -0
  619. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/sklearn/model_selection/_split.py +0 -0
  620. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/sklearn/model_selection/_validation.py +0 -0
  621. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/sklearn/pipeline.py +0 -0
  622. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/sklearn/preprocessing/_data.py +0 -0
  623. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/sklearn/preprocessing/_discretization.py +0 -0
  624. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/sklearn/preprocessing/_encoder.py +0 -0
  625. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/sklearn/preprocessing/_label.py +0 -0
  626. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/sklearn/preprocessing/_polynomial.py +0 -0
  627. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/tpch/LICENSE +0 -0
  628. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/tpch/METADATA +0 -0
  629. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/tpch/README.md +0 -0
  630. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/tpch/TPC-EULA.txt +0 -0
  631. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/tpch/__init__.py +0 -0
  632. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/tpch/queries/__init__.py +0 -0
  633. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/tpch/queries/q1.py +0 -0
  634. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/tpch/queries/q10.py +0 -0
  635. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/tpch/queries/q11.py +0 -0
  636. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/tpch/queries/q12.py +0 -0
  637. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/tpch/queries/q13.py +0 -0
  638. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/tpch/queries/q14.py +0 -0
  639. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/tpch/queries/q15.py +0 -0
  640. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/tpch/queries/q16.py +0 -0
  641. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/tpch/queries/q17.py +0 -0
  642. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/tpch/queries/q18.py +0 -0
  643. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/tpch/queries/q19.py +0 -0
  644. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/tpch/queries/q2.py +0 -0
  645. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/tpch/queries/q20.py +0 -0
  646. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/tpch/queries/q21.py +0 -0
  647. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/tpch/queries/q22.py +0 -0
  648. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/tpch/queries/q3.py +0 -0
  649. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/tpch/queries/q4.py +0 -0
  650. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/tpch/queries/q5.py +0 -0
  651. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/tpch/queries/q6.py +0 -0
  652. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/tpch/queries/q7.py +0 -0
  653. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/tpch/queries/q8.py +0 -0
  654. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/tpch/queries/q9.py +0 -0
  655. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/tpch/sql_queries/q1.sql +0 -0
  656. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/tpch/sql_queries/q10.sql +0 -0
  657. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/tpch/sql_queries/q11.sql +0 -0
  658. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/tpch/sql_queries/q12.sql +0 -0
  659. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/tpch/sql_queries/q13.sql +0 -0
  660. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/tpch/sql_queries/q14.sql +0 -0
  661. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/tpch/sql_queries/q15.sql +0 -0
  662. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/tpch/sql_queries/q16.sql +0 -0
  663. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/tpch/sql_queries/q17.sql +0 -0
  664. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/tpch/sql_queries/q18.sql +0 -0
  665. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/tpch/sql_queries/q19.sql +0 -0
  666. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/tpch/sql_queries/q2.sql +0 -0
  667. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/tpch/sql_queries/q20.sql +0 -0
  668. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/tpch/sql_queries/q21.sql +0 -0
  669. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/tpch/sql_queries/q22.sql +0 -0
  670. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/tpch/sql_queries/q3.sql +0 -0
  671. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/tpch/sql_queries/q4.sql +0 -0
  672. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/tpch/sql_queries/q5.sql +0 -0
  673. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/tpch/sql_queries/q6.sql +0 -0
  674. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/tpch/sql_queries/q7.sql +0 -0
  675. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/tpch/sql_queries/q8.sql +0 -0
  676. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/tpch/sql_queries/q9.sql +0 -0
  677. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/xgboost/LICENSE +0 -0
  678. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/xgboost/__init__.py +0 -0
  679. {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/xgboost/sklearn.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: bigframes
3
- Version: 1.41.0
3
+ Version: 2.0.0.dev0
4
4
  Summary: BigQuery DataFrames -- scalable analytics and machine learning with BigQuery
5
5
  Home-page: https://github.com/googleapis/python-bigquery-dataframes
6
6
  Author: Google LLC
@@ -20,6 +20,7 @@ Classifier: Programming Language :: Python :: 3.13
20
20
  Classifier: Operating System :: OS Independent
21
21
  Classifier: Topic :: Internet
22
22
  Requires-Python: >=3.9
23
+ Description-Content-Type: text/x-rst
23
24
  License-File: LICENSE
24
25
  Requires-Dist: cloudpickle>=2.0.0
25
26
  Requires-Dist: fsspec>=2023.3.0
@@ -28,7 +29,7 @@ Requires-Dist: geopandas>=0.12.2
28
29
  Requires-Dist: google-auth<3.0dev,>=2.15.0
29
30
  Requires-Dist: google-cloud-bigtable>=2.24.0
30
31
  Requires-Dist: google-cloud-pubsub>=2.21.4
31
- Requires-Dist: google-cloud-bigquery[bqstorage,pandas]>=3.18.0
32
+ Requires-Dist: google-cloud-bigquery[bqstorage,pandas]>=3.31.0
32
33
  Requires-Dist: google-cloud-functions>=1.12.0
33
34
  Requires-Dist: google-cloud-bigquery-connection>=1.12.0
34
35
  Requires-Dist: google-cloud-iam>=2.12.1
@@ -37,7 +38,7 @@ Requires-Dist: google-cloud-storage>=2.0.0
37
38
  Requires-Dist: jellyfish<1.1.2,>=0.8.9
38
39
  Requires-Dist: numpy>=1.24.0
39
40
  Requires-Dist: pandas>=1.5.3
40
- Requires-Dist: pandas-gbq>=0.26.0
41
+ Requires-Dist: pandas-gbq>=0.26.1
41
42
  Requires-Dist: pyarrow>=15.0.2
42
43
  Requires-Dist: pydata-google-auth>=1.8.2
43
44
  Requires-Dist: requests>=2.27.1
@@ -88,6 +89,30 @@ powered by the BigQuery engine.
88
89
  BigQuery DataFrames is an open-source package. You can run
89
90
  ``pip install --upgrade bigframes`` to install the latest version.
90
91
 
92
+ ⚠️ Warning: Breaking Changes in BigQuery DataFrames v2.0
93
+ --------------------------------------------------------
94
+
95
+ Version 2.0 introduces breaking changes for improved security and performance. Key default behaviors have changed, including
96
+
97
+ * **Large Results (>10GB):** The default value for ``allow_large_results`` has changed to ``False``.
98
+ Methods like ``to_pandas()`` will now fail if the query result's compressed data size exceeds 10GB,
99
+ unless large results are explicitly permitted.
100
+ * **Remote Function Security:** The library no longer automatically lets the Compute Engine default service
101
+ account become the identity of the Cloud Run functions. If that is desired, it has to be indicated by passing
102
+ ``cloud_function_service_account="default"``. And network ingress now defaults to ``"internal-only"``.
103
+ * **@remote_function Argument Passing:** Arguments other than ``input_types``, ``output_type``, and ``dataset``
104
+ to ``remote_function`` must now be passed using keyword syntax, as positional arguments are no longer supported.
105
+ * **Endpoint Connections:** Automatic fallback to locational endpoints in certain regions is removed.
106
+ * **LLM Updates (Gemini Integration):** Integrations now default to the ``gemini-2.0-flash-001`` model.
107
+ PaLM2 support has been removed; please migrate any existing PaLM2 usage to Gemini. **Note:** The current default
108
+ model will be removed in Version 3.0.
109
+
110
+ **Important:** If you are not ready to adapt to these changes, please pin your dependency to a version less than 2.0
111
+ (e.g., ``bigframes==1.42.0``) to avoid disruption.
112
+
113
+ To learn about these changes and how to migrate to version 2.0, see the
114
+ `updated introduction guide <https://cloud.google.com/bigquery/docs/bigquery-dataframes-introduction>`_.
115
+
91
116
  .. |GA| image:: https://img.shields.io/badge/support-GA-gold.svg
92
117
  :target: https://github.com/googleapis/google-cloud-python/blob/main/README.rst#general-availability
93
118
  .. |pypi| image:: https://img.shields.io/pypi/v/bigframes.svg
@@ -12,6 +12,30 @@ powered by the BigQuery engine.
12
12
  BigQuery DataFrames is an open-source package. You can run
13
13
  ``pip install --upgrade bigframes`` to install the latest version.
14
14
 
15
+ ⚠️ Warning: Breaking Changes in BigQuery DataFrames v2.0
16
+ --------------------------------------------------------
17
+
18
+ Version 2.0 introduces breaking changes for improved security and performance. Key default behaviors have changed, including
19
+
20
+ * **Large Results (>10GB):** The default value for ``allow_large_results`` has changed to ``False``.
21
+ Methods like ``to_pandas()`` will now fail if the query result's compressed data size exceeds 10GB,
22
+ unless large results are explicitly permitted.
23
+ * **Remote Function Security:** The library no longer automatically lets the Compute Engine default service
24
+ account become the identity of the Cloud Run functions. If that is desired, it has to be indicated by passing
25
+ ``cloud_function_service_account="default"``. And network ingress now defaults to ``"internal-only"``.
26
+ * **@remote_function Argument Passing:** Arguments other than ``input_types``, ``output_type``, and ``dataset``
27
+ to ``remote_function`` must now be passed using keyword syntax, as positional arguments are no longer supported.
28
+ * **Endpoint Connections:** Automatic fallback to locational endpoints in certain regions is removed.
29
+ * **LLM Updates (Gemini Integration):** Integrations now default to the ``gemini-2.0-flash-001`` model.
30
+ PaLM2 support has been removed; please migrate any existing PaLM2 usage to Gemini. **Note:** The current default
31
+ model will be removed in Version 3.0.
32
+
33
+ **Important:** If you are not ready to adapt to these changes, please pin your dependency to a version less than 2.0
34
+ (e.g., ``bigframes==1.42.0``) to avoid disruption.
35
+
36
+ To learn about these changes and how to migrate to version 2.0, see the
37
+ `updated introduction guide <https://cloud.google.com/bigquery/docs/bigquery-dataframes-introduction>`_.
38
+
15
39
  .. |GA| image:: https://img.shields.io/badge/support-GA-gold.svg
16
40
  :target: https://github.com/googleapis/google-cloud-python/blob/main/README.rst#general-availability
17
41
  .. |pypi| image:: https://img.shields.io/pypi/v/bigframes.svg
@@ -89,7 +89,7 @@ class BigQueryOptions:
89
89
  kms_key_name: Optional[str] = None,
90
90
  skip_bq_connection_check: bool = False,
91
91
  *,
92
- allow_large_results: bool = True,
92
+ allow_large_results: bool = False,
93
93
  ordering_mode: Literal["strict", "partial"] = "strict",
94
94
  client_endpoints_override: Optional[dict] = None,
95
95
  ):
@@ -258,7 +258,8 @@ class BigQueryOptions:
258
258
 
259
259
  @property
260
260
  def use_regional_endpoints(self) -> bool:
261
- """Flag to connect to regional API endpoints.
261
+ """Flag to connect to regional API endpoints for BigQuery API and
262
+ BigQuery Storage API.
262
263
 
263
264
  .. note::
264
265
  Use of regional endpoints is a feature in Preview and available only
@@ -267,18 +268,16 @@ class BigQueryOptions:
267
268
  "us-east5", "us-east7", "us-south1", "us-west1", "us-west2", "us-west3"
268
269
  and "us-west4".
269
270
 
270
- .. deprecated:: 0.13.0
271
- Use of locational endpoints is available only in selected projects.
272
-
273
- Requires that ``location`` is set. For supported regions, for example
274
- ``europe-west3``, you need to specify ``location='europe-west3'`` and
275
- ``use_regional_endpoints=True``, and then BigQuery DataFrames would
276
- connect to the BigQuery endpoint ``bigquery.europe-west3.rep.googleapis.com``.
277
- For not supported regions, for example ``asia-northeast1``, when you
278
- specify ``location='asia-northeast1'`` and ``use_regional_endpoints=True``,
279
- a different endpoint (called locational endpoint, now deprecated, used
280
- to provide weaker promise on the request remaining within the location
281
- during transit) ``europe-west3-bigquery.googleapis.com`` would be used.
271
+ Requires that ``location`` is set. For [supported regions](https://cloud.google.com/bigquery/docs/regional-endpoints),
272
+ for example ``europe-west3``, you need to specify
273
+ ``location='europe-west3'`` and ``use_regional_endpoints=True``, and
274
+ then BigQuery DataFrames would connect to the BigQuery endpoint
275
+ ``bigquery.europe-west3.rep.googleapis.com``. For not supported regions,
276
+ for example ``asia-northeast1``, when you specify
277
+ ``location='asia-northeast1'`` and ``use_regional_endpoints=True``,
278
+ the global endpoint ``bigquery.googleapis.com`` would be used, which
279
+ does not promise any guarantee on the request remaining within the
280
+ location during transit.
282
281
 
283
282
  Returns:
284
283
  bool:
@@ -60,19 +60,31 @@ class ComputeOptions:
60
60
  bytes billed beyond this limit will fail (without incurring a
61
61
  charge). If unspecified, this will be set to your project default.
62
62
  See `maximum_bytes_billed`: https://cloud.google.com/python/docs/reference/bigquery/latest/google.cloud.bigquery.job.QueryJobConfig#google_cloud_bigquery_job_QueryJobConfig_maximum_bytes_billed.
63
+
63
64
  enable_multi_query_execution (bool, Options):
64
65
  If enabled, large queries may be factored into multiple smaller queries
65
66
  in order to avoid generating queries that are too complex for the query
66
67
  engine to handle. However this comes at the cost of increase cost and latency.
68
+
67
69
  extra_query_labels (Dict[str, Any], Options):
68
70
  Stores additional custom labels for query configuration.
69
- semmantic_ops_confirmation_threshold (int, optional):
70
- Guards against unexepcted processing of large amount of rows by semantic operators.
71
+
72
+ semantic_ops_confirmation_threshold (int, optional):
73
+ .. deprecated:: 1.42.0
74
+ Semantic operators are deprecated. Please use AI operators instead
75
+
76
+ semantic_ops_threshold_autofail (bool):
77
+ .. deprecated:: 1.42.0
78
+ Semantic operators are deprecated. Please use AI operators instead
79
+
80
+ ai_ops_confirmation_threshold (int, optional):
81
+ Guards against unexpected processing of large amount of rows by semantic operators.
71
82
  If the number of rows exceeds the threshold, the user will be asked to confirm
72
83
  their operations to resume. The default value is 0. Set the value to None
73
84
  to turn off the guard.
74
- semantic_ops_threshold_autofail (bool):
75
- Guards against unexepcted processing of large amount of rows by semantic operators.
85
+
86
+ ai_ops_threshold_autofail (bool):
87
+ Guards against unexpected processing of large amount of rows by semantic operators.
76
88
  When set to True, the operation automatically fails without asking for user inputs.
77
89
  """
78
90
 
@@ -84,6 +96,9 @@ class ComputeOptions:
84
96
  semantic_ops_confirmation_threshold: Optional[int] = 0
85
97
  semantic_ops_threshold_autofail = False
86
98
 
99
+ ai_ops_confirmation_threshold: Optional[int] = 0
100
+ ai_ops_threshold_autofail = False
101
+
87
102
  def assign_extra_query_labels(self, **kwargs: Any) -> None:
88
103
  """
89
104
  Assigns additional custom labels for query configuration. The method updates the
@@ -24,8 +24,8 @@ class ExperimentOptions:
24
24
 
25
25
  def __init__(self):
26
26
  self._semantic_operators: bool = False
27
+ self._ai_operators: bool = False
27
28
  self._blob: bool = False
28
- self._udf: bool = False
29
29
 
30
30
  @property
31
31
  def semantic_operators(self) -> bool:
@@ -35,11 +35,24 @@ class ExperimentOptions:
35
35
  def semantic_operators(self, value: bool):
36
36
  if value is True:
37
37
  msg = bfe.format_message(
38
- "Semantic operators are still under experiments, and are subject "
38
+ "Semantic operators are deprecated, and will be removed in the future"
39
+ )
40
+ warnings.warn(msg, category=FutureWarning)
41
+ self._semantic_operators = value
42
+
43
+ @property
44
+ def ai_operators(self) -> bool:
45
+ return self._ai_operators
46
+
47
+ @ai_operators.setter
48
+ def ai_operators(self, value: bool):
49
+ if value is True:
50
+ msg = bfe.format_message(
51
+ "AI operators are still under experiments, and are subject "
39
52
  "to change in the future."
40
53
  )
41
54
  warnings.warn(msg, category=bfe.PreviewWarning)
42
- self._semantic_operators = value
55
+ self._ai_operators = value
43
56
 
44
57
  @property
45
58
  def blob(self) -> bool:
@@ -54,17 +67,3 @@ class ExperimentOptions:
54
67
  )
55
68
  warnings.warn(msg, category=bfe.PreviewWarning)
56
69
  self._blob = value
57
-
58
- @property
59
- def udf(self) -> bool:
60
- return self._udf
61
-
62
- @udf.setter
63
- def udf(self, value: bool):
64
- if value is True:
65
- msg = bfe.format_message(
66
- "BigFrames managed function (udf) is still under experiments. "
67
- "It may not work and subject to change in the future."
68
- )
69
- warnings.warn(msg, category=bfe.PreviewWarning)
70
- self._udf = value
@@ -27,7 +27,7 @@ from bigframes.bigquery._operations.datetime import (
27
27
  unix_millis,
28
28
  unix_seconds,
29
29
  )
30
- from bigframes.bigquery._operations.geo import st_area
30
+ from bigframes.bigquery._operations.geo import st_area, st_difference, st_intersection
31
31
  from bigframes.bigquery._operations.json import (
32
32
  json_extract,
33
33
  json_extract_array,
@@ -48,6 +48,8 @@ __all__ = [
48
48
  "array_to_string",
49
49
  # geo ops
50
50
  "st_area",
51
+ "st_difference",
52
+ "st_intersection",
51
53
  # json ops
52
54
  "json_set",
53
55
  "json_extract",
@@ -0,0 +1,305 @@
1
+ # Copyright 2025 Google LLC
2
+ #
3
+ # Licensed under the Apache License, Version 2.0 (the "License");
4
+ # you may not use this file except in compliance with the License.
5
+ # You may obtain a copy of the License at
6
+ #
7
+ # http://www.apache.org/licenses/LICENSE-2.0
8
+ #
9
+ # Unless required by applicable law or agreed to in writing, software
10
+ # distributed under the License is distributed on an "AS IS" BASIS,
11
+ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12
+ # See the License for the specific language governing permissions and
13
+ # limitations under the License.
14
+
15
+ from __future__ import annotations
16
+
17
+ from bigframes import operations as ops
18
+ import bigframes.dtypes
19
+ import bigframes.geopandas
20
+ import bigframes.series
21
+
22
+ """
23
+ Search functions defined from
24
+ https://cloud.google.com/bigquery/docs/reference/standard-sql/geography_functions
25
+ """
26
+
27
+
28
+ def st_area(series: bigframes.series.Series) -> bigframes.series.Series:
29
+ """
30
+ Returns the area in square meters covered by the polygons in the input
31
+ `GEOGRAPHY`.
32
+
33
+ If geography_expression is a point or a line, returns zero. If
34
+ geography_expression is a collection, returns the area of the polygons
35
+ in the collection; if the collection doesn't contain polygons, returns zero.
36
+
37
+
38
+ .. note::
39
+ BigQuery's Geography functions, like `st_area`, interpret the geometry
40
+ data type as a point set on the Earth's surface. A point set is a set
41
+ of points, lines, and polygons on the WGS84 reference spheroid, with
42
+ geodesic edges. See: https://cloud.google.com/bigquery/docs/geospatial-data
43
+
44
+
45
+ **Examples:**
46
+
47
+ >>> import bigframes.geopandas
48
+ >>> import bigframes.pandas as bpd
49
+ >>> import bigframes.bigquery as bbq
50
+ >>> from shapely.geometry import Polygon, LineString, Point
51
+ >>> bpd.options.display.progress_bar = None
52
+
53
+ >>> series = bigframes.geopandas.GeoSeries(
54
+ ... [
55
+ ... Polygon([(0.0, 0.0), (0.1, 0.1), (0.0, 0.1)]),
56
+ ... Polygon([(0.10, 0.4), (0.9, 0.5), (0.10, 0.5)]),
57
+ ... Polygon([(0.1, 0.1), (0.2, 0.1), (0.2, 0.2)]),
58
+ ... LineString([(0, 0), (1, 1), (0, 1)]),
59
+ ... Point(0, 1),
60
+ ... ]
61
+ ... )
62
+ >>> series
63
+ 0 POLYGON ((0 0, 0.1 0.1, 0 0.1, 0 0))
64
+ 1 POLYGON ((0.1 0.4, 0.9 0.5, 0.1 0.5, 0.1 0.4))
65
+ 2 POLYGON ((0.1 0.1, 0.2 0.1, 0.2 0.2, 0.1 0.1))
66
+ 3 LINESTRING (0 0, 1 1, 0 1)
67
+ 4 POINT (0 1)
68
+ dtype: geometry
69
+
70
+ >>> bbq.st_area(series)
71
+ 0 61821689.855985
72
+ 1 494563347.88721
73
+ 2 61821689.855841
74
+ 3 0.0
75
+ 4 0.0
76
+ dtype: Float64
77
+
78
+ Use `round()` to round the outputed areas to the neares ten millions
79
+
80
+ >>> bbq.st_area(series).round(-7)
81
+ 0 60000000.0
82
+ 1 490000000.0
83
+ 2 60000000.0
84
+ 3 0.0
85
+ 4 0.0
86
+ dtype: Float64
87
+
88
+ Returns:
89
+ bigframes.pandas.Series:
90
+ Series of float representing the areas.
91
+ """
92
+ series = series._apply_unary_op(ops.geo_area_op)
93
+ series.name = None
94
+ return series
95
+
96
+
97
+ def st_difference(
98
+ series: bigframes.series.Series, other: bigframes.series.Series
99
+ ) -> bigframes.series.Series:
100
+ """
101
+ Returns a `GEOGRAPHY` that represents the point set difference of
102
+ `geography_1` and `geography_2`. Therefore, the result consists of the part
103
+ of `geography_1` that doesn't intersect with `geography_2`.
104
+
105
+ If `geometry_1` is completely contained in `geometry_2`, then `ST_DIFFERENCE`
106
+ returns an empty `GEOGRAPHY`.
107
+
108
+ .. note::
109
+ BigQuery's Geography functions, like `st_difference`, interpret the geometry
110
+ data type as a point set on the Earth's surface. A point set is a set
111
+ of points, lines, and polygons on the WGS84 reference spheroid, with
112
+ geodesic edges. See: https://cloud.google.com/bigquery/docs/geospatial-data
113
+
114
+ **Examples:**
115
+
116
+ >>> import bigframes as bpd
117
+ >>> import bigframes.bigquery as bbq
118
+ >>> import bigframes.geopandas
119
+ >>> from shapely.geometry import Polygon, LineString, Point
120
+ >>> bpd.options.display.progress_bar = None
121
+
122
+ We can check two GeoSeries against each other, row by row:
123
+
124
+ >>> s1 = bigframes.geopandas.GeoSeries(
125
+ ... [
126
+ ... Polygon([(0, 0), (2, 2), (0, 2)]),
127
+ ... Polygon([(0, 0), (2, 2), (0, 2)]),
128
+ ... LineString([(0, 0), (2, 2)]),
129
+ ... LineString([(2, 0), (0, 2)]),
130
+ ... Point(0, 1),
131
+ ... ],
132
+ ... )
133
+ >>> s2 = bigframes.geopandas.GeoSeries(
134
+ ... [
135
+ ... Polygon([(0, 0), (1, 1), (0, 1)]),
136
+ ... LineString([(1, 0), (1, 3)]),
137
+ ... LineString([(2, 0), (0, 2)]),
138
+ ... Point(1, 1),
139
+ ... Point(0, 1),
140
+ ... ],
141
+ ... index=range(1, 6),
142
+ ... )
143
+
144
+ >>> s1
145
+ 0 POLYGON ((0 0, 2 2, 0 2, 0 0))
146
+ 1 POLYGON ((0 0, 2 2, 0 2, 0 0))
147
+ 2 LINESTRING (0 0, 2 2)
148
+ 3 LINESTRING (2 0, 0 2)
149
+ 4 POINT (0 1)
150
+ dtype: geometry
151
+
152
+ >>> s2
153
+ 1 POLYGON ((0 0, 1 1, 0 1, 0 0))
154
+ 2 LINESTRING (1 0, 1 3)
155
+ 3 LINESTRING (2 0, 0 2)
156
+ 4 POINT (1 1)
157
+ 5 POINT (0 1)
158
+ dtype: geometry
159
+
160
+ >>> bbq.st_difference(s1, s2)
161
+ 0 None
162
+ 1 POLYGON ((0.99954 1, 2 2, 0 2, 0 1, 0.99954 1))
163
+ 2 LINESTRING (0 0, 1 1.00046, 2 2)
164
+ 3 GEOMETRYCOLLECTION EMPTY
165
+ 4 POINT (0 1)
166
+ 5 None
167
+ dtype: geometry
168
+
169
+ We can also check difference of single shapely geometries:
170
+
171
+ >>> polygon_s1 = bigframes.geopandas.GeoSeries(
172
+ ... [
173
+ ... Polygon([(0, 0), (10, 0), (10, 10), (0, 0)])
174
+ ... ]
175
+ ... )
176
+ >>> polygon_s2 = bigframes.geopandas.GeoSeries(
177
+ ... [
178
+ ... Polygon([(4, 2), (6, 2), (8, 6), (4, 2)])
179
+ ... ]
180
+ ... )
181
+
182
+ >>> polygon_s1
183
+ 0 POLYGON ((0 0, 10 0, 10 10, 0 0))
184
+ dtype: geometry
185
+
186
+ >>> polygon_s2
187
+ 0 POLYGON ((4 2, 6 2, 8 6, 4 2))
188
+ dtype: geometry
189
+
190
+ >>> bbq.st_difference(polygon_s1, polygon_s2)
191
+ 0 POLYGON ((0 0, 10 0, 10 10, 0 0), (8 6, 6 2, 4...
192
+ dtype: geometry
193
+
194
+ Additionally, we can check difference of a GeoSeries against a single shapely geometry:
195
+
196
+ >>> bbq.st_difference(s1, polygon_s2)
197
+ 0 POLYGON ((0 0, 2 2, 0 2, 0 0))
198
+ 1 None
199
+ 2 None
200
+ 3 None
201
+ 4 None
202
+ dtype: geometry
203
+
204
+ Args:
205
+ other (bigframes.series.Series or geometric object):
206
+ The GeoSeries (elementwise) or geometric object to find the difference to.
207
+
208
+ Returns:
209
+ bigframes.series.Series:
210
+ A GeoSeries of the points in each aligned geometry that are not
211
+ in other.
212
+ """
213
+ return series._apply_binary_op(other, ops.geo_st_difference_op)
214
+
215
+
216
+ def st_intersection(
217
+ series: bigframes.series.Series, other: bigframes.series.Series
218
+ ) -> bigframes.series.Series:
219
+ """
220
+ Returns a `GEOGRAPHY` that represents the point set intersection of the two
221
+ input `GEOGRAPHYs`. Thus, every point in the intersection appears in both
222
+ `geography_1` and `geography_2`.
223
+
224
+ .. note::
225
+ BigQuery's Geography functions, like `st_intersection`, interpret the geometry
226
+ data type as a point set on the Earth's surface. A point set is a set
227
+ of points, lines, and polygons on the WGS84 reference spheroid, with
228
+ geodesic edges. See: https://cloud.google.com/bigquery/docs/geospatial-data
229
+
230
+ **Examples:**
231
+
232
+ >>> import bigframes as bpd
233
+ >>> import bigframes.bigquery as bbq
234
+ >>> import bigframes.geopandas
235
+ >>> from shapely.geometry import Polygon, LineString, Point
236
+ >>> bpd.options.display.progress_bar = None
237
+
238
+ We can check two GeoSeries against each other, row by row.
239
+
240
+ >>> s1 = bigframes.geopandas.GeoSeries(
241
+ ... [
242
+ ... Polygon([(0, 0), (2, 2), (0, 2)]),
243
+ ... Polygon([(0, 0), (2, 2), (0, 2)]),
244
+ ... LineString([(0, 0), (2, 2)]),
245
+ ... LineString([(2, 0), (0, 2)]),
246
+ ... Point(0, 1),
247
+ ... ],
248
+ ... )
249
+ >>> s2 = bigframes.geopandas.GeoSeries(
250
+ ... [
251
+ ... Polygon([(0, 0), (1, 1), (0, 1)]),
252
+ ... LineString([(1, 0), (1, 3)]),
253
+ ... LineString([(2, 0), (0, 2)]),
254
+ ... Point(1, 1),
255
+ ... Point(0, 1),
256
+ ... ],
257
+ ... index=range(1, 6),
258
+ ... )
259
+
260
+ >>> s1
261
+ 0 POLYGON ((0 0, 2 2, 0 2, 0 0))
262
+ 1 POLYGON ((0 0, 2 2, 0 2, 0 0))
263
+ 2 LINESTRING (0 0, 2 2)
264
+ 3 LINESTRING (2 0, 0 2)
265
+ 4 POINT (0 1)
266
+ dtype: geometry
267
+
268
+ >>> s2
269
+ 1 POLYGON ((0 0, 1 1, 0 1, 0 0))
270
+ 2 LINESTRING (1 0, 1 3)
271
+ 3 LINESTRING (2 0, 0 2)
272
+ 4 POINT (1 1)
273
+ 5 POINT (0 1)
274
+ dtype: geometry
275
+
276
+ >>> bbq.st_intersection(s1, s2)
277
+ 0 None
278
+ 1 POLYGON ((0 0, 0.99954 1, 0 1, 0 0))
279
+ 2 POINT (1 1.00046)
280
+ 3 LINESTRING (2 0, 0 2)
281
+ 4 GEOMETRYCOLLECTION EMPTY
282
+ 5 None
283
+ dtype: geometry
284
+
285
+ We can also do intersection of each geometry and a single shapely geometry:
286
+
287
+ >>> bbq.st_intersection(s1, bigframes.geopandas.GeoSeries([Polygon([(0, 0), (1, 1), (0, 1)])]))
288
+ 0 POLYGON ((0 0, 0.99954 1, 0 1, 0 0))
289
+ 1 None
290
+ 2 None
291
+ 3 None
292
+ 4 None
293
+ dtype: geometry
294
+
295
+ Args:
296
+ other (GeoSeries or geometric object):
297
+ The Geoseries (elementwise) or geometric object to find the
298
+ intersection with.
299
+
300
+ Returns:
301
+ bigframes.geopandas.GeoSeries:
302
+ The Geoseries (elementwise) of the intersection of points in
303
+ each aligned geometry with other.
304
+ """
305
+ return series._apply_binary_op(other, ops.geo_st_intersection_op)