bigframes 2.35.0__tar.gz → 2.37.0__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 (1763) hide show
  1. bigframes-2.37.0/PKG-INFO +198 -0
  2. bigframes-2.37.0/README.rst +94 -0
  3. bigframes-2.37.0/bigframes/_config/auth.py +57 -0
  4. bigframes-2.37.0/bigframes/_config/bigquery_options.py +505 -0
  5. bigframes-2.37.0/bigframes/_config/compute_options.py +215 -0
  6. bigframes-2.37.0/bigframes/_config/experiment_options.py +168 -0
  7. bigframes-2.37.0/bigframes/_config/sampling_options.py +138 -0
  8. bigframes-2.37.0/bigframes/_tools/docs.py +39 -0
  9. bigframes-2.37.0/bigframes/bigquery/_operations/ai.py +1041 -0
  10. bigframes-2.37.0/bigframes/bigquery/_operations/sql.py +90 -0
  11. bigframes-2.37.0/bigframes/bigquery/ai.py +45 -0
  12. bigframes-2.37.0/bigframes/core/array_value.py +638 -0
  13. bigframes-2.37.0/bigframes/core/block_transforms.py +894 -0
  14. bigframes-2.37.0/bigframes/core/blocks.py +3504 -0
  15. bigframes-2.37.0/bigframes/core/bq_data.py +407 -0
  16. bigframes-2.37.0/bigframes/core/col.py +155 -0
  17. bigframes-2.37.0/bigframes/core/compile/compiled.py +518 -0
  18. bigframes-2.37.0/bigframes/core/compile/ibis_compiler/ibis_compiler.py +294 -0
  19. bigframes-2.37.0/bigframes/core/compile/ibis_compiler/scalar_op_registry.py +2189 -0
  20. bigframes-2.37.0/bigframes/core/compile/polars/lowering.py +508 -0
  21. bigframes-2.37.0/bigframes/core/compile/sqlglot/aggregate_compiler.py +76 -0
  22. bigframes-2.37.0/bigframes/core/compile/sqlglot/aggregations/binary_compiler.py +60 -0
  23. bigframes-2.37.0/bigframes/core/compile/sqlglot/aggregations/nullary_compiler.py +55 -0
  24. bigframes-2.37.0/bigframes/core/compile/sqlglot/aggregations/unary_compiler.py +626 -0
  25. bigframes-2.37.0/bigframes/core/compile/sqlglot/aggregations/windows.py +205 -0
  26. bigframes-2.37.0/bigframes/core/compile/sqlglot/compiler.py +337 -0
  27. bigframes-2.37.0/bigframes/core/compile/sqlglot/expression_compiler.py +231 -0
  28. bigframes-2.37.0/bigframes/core/compile/sqlglot/expressions/ai_ops.py +148 -0
  29. bigframes-2.37.0/bigframes/core/compile/sqlglot/expressions/array_ops.py +155 -0
  30. bigframes-2.37.0/bigframes/core/compile/sqlglot/expressions/blob_ops.py +52 -0
  31. bigframes-2.37.0/bigframes/core/compile/sqlglot/expressions/bool_ops.py +85 -0
  32. bigframes-2.37.0/bigframes/core/compile/sqlglot/expressions/common.py +33 -0
  33. bigframes-2.37.0/bigframes/core/compile/sqlglot/expressions/comparison_ops.py +169 -0
  34. bigframes-2.37.0/bigframes/core/compile/sqlglot/expressions/date_ops.py +72 -0
  35. bigframes-2.37.0/bigframes/core/compile/sqlglot/expressions/datetime_ops.py +673 -0
  36. bigframes-2.37.0/bigframes/core/compile/sqlglot/expressions/generic_ops.py +339 -0
  37. bigframes-2.37.0/bigframes/core/compile/sqlglot/expressions/geo_ops.py +131 -0
  38. bigframes-2.37.0/bigframes/core/compile/sqlglot/expressions/json_ops.py +84 -0
  39. bigframes-2.37.0/bigframes/core/compile/sqlglot/expressions/numeric_ops.py +664 -0
  40. bigframes-2.37.0/bigframes/core/compile/sqlglot/expressions/string_ops.py +382 -0
  41. bigframes-2.37.0/bigframes/core/compile/sqlglot/expressions/struct_ops.py +53 -0
  42. bigframes-2.37.0/bigframes/core/compile/sqlglot/expressions/timedelta_ops.py +44 -0
  43. bigframes-2.37.0/bigframes/core/compile/sqlglot/sqlglot_ir.py +842 -0
  44. bigframes-2.37.0/bigframes/core/expression_factoring.py +463 -0
  45. bigframes-2.37.0/bigframes/core/groupby/dataframe_group_by.py +782 -0
  46. bigframes-2.37.0/bigframes/core/groupby/series_group_by.py +453 -0
  47. bigframes-2.37.0/bigframes/core/indexers.py +566 -0
  48. bigframes-2.37.0/bigframes/core/indexes/base.py +853 -0
  49. bigframes-2.37.0/bigframes/core/indexes/datetimes.py +56 -0
  50. bigframes-2.37.0/bigframes/core/indexes/multi.py +115 -0
  51. bigframes-2.37.0/bigframes/core/nodes.py +1740 -0
  52. bigframes-2.37.0/bigframes/core/rewrite/__init__.py +54 -0
  53. bigframes-2.37.0/bigframes/core/rewrite/as_sql.py +227 -0
  54. bigframes-2.37.0/bigframes/core/rewrite/identifiers.py +87 -0
  55. bigframes-2.37.0/bigframes/core/rewrite/select_pullup.py +177 -0
  56. bigframes-2.37.0/bigframes/core/rewrite/timedeltas.py +266 -0
  57. bigframes-2.37.0/bigframes/core/rewrite/windows.py +139 -0
  58. bigframes-2.37.0/bigframes/core/schema.py +136 -0
  59. bigframes-2.37.0/bigframes/core/sql/__init__.py +267 -0
  60. bigframes-2.37.0/bigframes/core/sql/ml.py +296 -0
  61. bigframes-2.37.0/bigframes/core/sql_nodes.py +161 -0
  62. bigframes-2.37.0/bigframes/core/utils.py +251 -0
  63. bigframes-2.37.0/bigframes/core/window/rolling.py +276 -0
  64. bigframes-2.37.0/bigframes/dataframe.py +5100 -0
  65. bigframes-2.37.0/bigframes/display/html.py +387 -0
  66. bigframes-2.37.0/bigframes/dtypes.py +990 -0
  67. bigframes-2.37.0/bigframes/functions/_function_client.py +764 -0
  68. bigframes-2.37.0/bigframes/functions/_function_session.py +1011 -0
  69. bigframes-2.37.0/bigframes/functions/function_template.py +384 -0
  70. bigframes-2.37.0/bigframes/geopandas/geoseries.py +130 -0
  71. bigframes-2.37.0/bigframes/ml/base.py +384 -0
  72. bigframes-2.37.0/bigframes/ml/cluster.py +196 -0
  73. bigframes-2.37.0/bigframes/ml/compose.py +360 -0
  74. bigframes-2.37.0/bigframes/ml/decomposition.py +370 -0
  75. bigframes-2.37.0/bigframes/ml/ensemble.py +694 -0
  76. bigframes-2.37.0/bigframes/ml/imported.py +307 -0
  77. bigframes-2.37.0/bigframes/ml/impute.py +121 -0
  78. bigframes-2.37.0/bigframes/ml/llm.py +1069 -0
  79. bigframes-2.37.0/bigframes/ml/metrics/_metrics.py +411 -0
  80. bigframes-2.37.0/bigframes/ml/model_selection.py +226 -0
  81. bigframes-2.37.0/bigframes/ml/preprocessing.py +722 -0
  82. bigframes-2.37.0/bigframes/ml/sql.py +442 -0
  83. bigframes-2.37.0/bigframes/operations/blob.py +1081 -0
  84. bigframes-2.37.0/bigframes/operations/datetime_ops.py +156 -0
  85. bigframes-2.37.0/bigframes/operations/datetimes.py +182 -0
  86. bigframes-2.37.0/bigframes/operations/lists.py +46 -0
  87. bigframes-2.37.0/bigframes/operations/plotting.py +108 -0
  88. bigframes-2.37.0/bigframes/operations/strings.py +353 -0
  89. bigframes-2.37.0/bigframes/operations/structs.py +92 -0
  90. bigframes-2.37.0/bigframes/pandas/__init__.py +477 -0
  91. bigframes-2.37.0/bigframes/pandas/io/api.py +710 -0
  92. bigframes-2.37.0/bigframes/series.py +2779 -0
  93. bigframes-2.37.0/bigframes/session/__init__.py +2445 -0
  94. bigframes-2.37.0/bigframes/session/_io/bigquery/__init__.py +655 -0
  95. bigframes-2.37.0/bigframes/session/_io/bigquery/read_gbq_table.py +386 -0
  96. bigframes-2.37.0/bigframes/session/bigquery_session.py +214 -0
  97. bigframes-2.37.0/bigframes/session/bq_caching_executor.py +747 -0
  98. bigframes-2.37.0/bigframes/session/dry_runs.py +189 -0
  99. bigframes-2.37.0/bigframes/session/iceberg.py +204 -0
  100. bigframes-2.37.0/bigframes/session/loader.py +1544 -0
  101. bigframes-2.37.0/bigframes/session/polars_executor.py +164 -0
  102. bigframes-2.37.0/bigframes/session/read_api_execution.py +90 -0
  103. bigframes-2.37.0/bigframes/streaming/dataframe.py +573 -0
  104. bigframes-2.37.0/bigframes/testing/__init__.py +26 -0
  105. bigframes-2.37.0/bigframes/testing/utils.py +564 -0
  106. bigframes-2.37.0/bigframes/version.py +19 -0
  107. bigframes-2.37.0/bigframes.egg-info/PKG-INFO +198 -0
  108. bigframes-2.37.0/bigframes.egg-info/SOURCES.txt +1293 -0
  109. bigframes-2.37.0/bigframes.egg-info/requires.txt +66 -0
  110. bigframes-2.37.0/setup.py +162 -0
  111. bigframes-2.37.0/tests/system/large/bigquery/test_ai.py +130 -0
  112. bigframes-2.37.0/tests/system/large/functions/test_managed_function.py +1323 -0
  113. bigframes-2.37.0/tests/system/large/functions/test_remote_function.py +3250 -0
  114. bigframes-2.37.0/tests/system/large/ml/test_llm.py +807 -0
  115. bigframes-2.37.0/tests/system/large/ml/test_multimodal_llm.py +106 -0
  116. bigframes-2.37.0/tests/system/large/test_tpch.py +101 -0
  117. bigframes-2.37.0/tests/system/load/test_llm.py +160 -0
  118. bigframes-2.37.0/tests/system/small/bigquery/test_array.py +202 -0
  119. bigframes-2.37.0/tests/system/small/bigquery/test_datetime.py +144 -0
  120. bigframes-2.37.0/tests/system/small/bigquery/test_geo.py +492 -0
  121. bigframes-2.37.0/tests/system/small/bigquery/test_sql.py +161 -0
  122. bigframes-2.37.0/tests/system/small/bigquery/test_struct.py +62 -0
  123. bigframes-2.37.0/tests/system/small/core/test_reshape.py +120 -0
  124. bigframes-2.37.0/tests/system/small/engines/test_numeric_ops.py +211 -0
  125. bigframes-2.37.0/tests/system/small/ml/test_metrics.py +900 -0
  126. bigframes-2.37.0/tests/system/small/ml/test_model_selection.py +557 -0
  127. bigframes-2.37.0/tests/system/small/ml/test_utils.py +80 -0
  128. bigframes-2.37.0/tests/system/small/operations/test_dates.py +91 -0
  129. bigframes-2.37.0/tests/system/small/operations/test_datetimes.py +679 -0
  130. bigframes-2.37.0/tests/system/small/operations/test_timedeltas.py +656 -0
  131. bigframes-2.37.0/tests/system/small/test_anywidget.py +1158 -0
  132. bigframes-2.37.0/tests/system/small/test_dataframe.py +6255 -0
  133. bigframes-2.37.0/tests/system/small/test_dataframe_io.py +1199 -0
  134. bigframes-2.37.0/tests/system/small/test_groupby.py +982 -0
  135. bigframes-2.37.0/tests/system/small/test_index_io.py +56 -0
  136. bigframes-2.37.0/tests/system/small/test_multiindex.py +1488 -0
  137. bigframes-2.37.0/tests/system/small/test_null_index.py +435 -0
  138. bigframes-2.37.0/tests/system/small/test_numpy.py +159 -0
  139. bigframes-2.37.0/tests/system/small/test_pandas.py +1121 -0
  140. bigframes-2.37.0/tests/system/small/test_pandas_options.py +371 -0
  141. bigframes-2.37.0/tests/system/small/test_progress_bar.py +169 -0
  142. bigframes-2.37.0/tests/system/small/test_series.py +4969 -0
  143. bigframes-2.37.0/tests/system/small/test_series_io.py +126 -0
  144. bigframes-2.37.0/tests/system/small/test_session.py +2250 -0
  145. bigframes-2.37.0/tests/system/small/test_unordered.py +295 -0
  146. bigframes-2.37.0/tests/system/small/test_window.py +481 -0
  147. bigframes-2.37.0/tests/unit/bigquery/test_ai.py +319 -0
  148. bigframes-2.37.0/tests/unit/core/compile/sqlglot/aggregations/snapshots/test_binary_compiler/test_corr/out.sql +13 -0
  149. bigframes-2.37.0/tests/unit/core/compile/sqlglot/aggregations/snapshots/test_binary_compiler/test_cov/out.sql +13 -0
  150. bigframes-2.37.0/tests/unit/core/compile/sqlglot/aggregations/snapshots/test_nullary_compiler/test_row_number/out.sql +3 -0
  151. bigframes-2.37.0/tests/unit/core/compile/sqlglot/aggregations/snapshots/test_nullary_compiler/test_row_number_with_window/out.sql +3 -0
  152. bigframes-2.37.0/tests/unit/core/compile/sqlglot/aggregations/snapshots/test_nullary_compiler/test_size/out.sql +12 -0
  153. bigframes-2.37.0/tests/unit/core/compile/sqlglot/aggregations/snapshots/test_ordered_unary_compiler/test_array_agg/out.sql +12 -0
  154. bigframes-2.37.0/tests/unit/core/compile/sqlglot/aggregations/snapshots/test_ordered_unary_compiler/test_string_agg/out.sql +18 -0
  155. bigframes-2.37.0/tests/unit/core/compile/sqlglot/aggregations/snapshots/test_unary_compiler/test_all/out.sql +15 -0
  156. bigframes-2.37.0/tests/unit/core/compile/sqlglot/aggregations/snapshots/test_unary_compiler/test_all_w_window/out.sql +3 -0
  157. bigframes-2.37.0/tests/unit/core/compile/sqlglot/aggregations/snapshots/test_unary_compiler/test_any/out.sql +15 -0
  158. bigframes-2.37.0/tests/unit/core/compile/sqlglot/aggregations/snapshots/test_unary_compiler/test_any_value/out.sql +12 -0
  159. bigframes-2.37.0/tests/unit/core/compile/sqlglot/aggregations/snapshots/test_unary_compiler/test_any_value/window_out.sql +3 -0
  160. bigframes-2.37.0/tests/unit/core/compile/sqlglot/aggregations/snapshots/test_unary_compiler/test_any_value/window_partition_out.sql +3 -0
  161. bigframes-2.37.0/tests/unit/core/compile/sqlglot/aggregations/snapshots/test_unary_compiler/test_any_w_window/out.sql +3 -0
  162. bigframes-2.37.0/tests/unit/core/compile/sqlglot/aggregations/snapshots/test_unary_compiler/test_approx_quartiles/out.sql +16 -0
  163. bigframes-2.37.0/tests/unit/core/compile/sqlglot/aggregations/snapshots/test_unary_compiler/test_approx_top_count/out.sql +12 -0
  164. bigframes-2.37.0/tests/unit/core/compile/sqlglot/aggregations/snapshots/test_unary_compiler/test_count/out.sql +12 -0
  165. bigframes-2.37.0/tests/unit/core/compile/sqlglot/aggregations/snapshots/test_unary_compiler/test_count/window_out.sql +3 -0
  166. bigframes-2.37.0/tests/unit/core/compile/sqlglot/aggregations/snapshots/test_unary_compiler/test_count/window_partition_out.sql +3 -0
  167. bigframes-2.37.0/tests/unit/core/compile/sqlglot/aggregations/snapshots/test_unary_compiler/test_cut/int_bins.sql +47 -0
  168. bigframes-2.37.0/tests/unit/core/compile/sqlglot/aggregations/snapshots/test_unary_compiler/test_cut/int_bins_labels.sql +16 -0
  169. bigframes-2.37.0/tests/unit/core/compile/sqlglot/aggregations/snapshots/test_unary_compiler/test_cut/interval_bins.sql +8 -0
  170. bigframes-2.37.0/tests/unit/core/compile/sqlglot/aggregations/snapshots/test_unary_compiler/test_cut/interval_bins_labels.sql +8 -0
  171. bigframes-2.37.0/tests/unit/core/compile/sqlglot/aggregations/snapshots/test_unary_compiler/test_dense_rank/out.sql +3 -0
  172. bigframes-2.37.0/tests/unit/core/compile/sqlglot/aggregations/snapshots/test_unary_compiler/test_diff_w_bool/out.sql +3 -0
  173. bigframes-2.37.0/tests/unit/core/compile/sqlglot/aggregations/snapshots/test_unary_compiler/test_diff_w_date/out.sql +5 -0
  174. bigframes-2.37.0/tests/unit/core/compile/sqlglot/aggregations/snapshots/test_unary_compiler/test_diff_w_datetime/out.sql +7 -0
  175. bigframes-2.37.0/tests/unit/core/compile/sqlglot/aggregations/snapshots/test_unary_compiler/test_diff_w_int/out.sql +3 -0
  176. bigframes-2.37.0/tests/unit/core/compile/sqlglot/aggregations/snapshots/test_unary_compiler/test_diff_w_timestamp/out.sql +7 -0
  177. bigframes-2.37.0/tests/unit/core/compile/sqlglot/aggregations/snapshots/test_unary_compiler/test_first/out.sql +6 -0
  178. bigframes-2.37.0/tests/unit/core/compile/sqlglot/aggregations/snapshots/test_unary_compiler/test_first_non_null/out.sql +6 -0
  179. bigframes-2.37.0/tests/unit/core/compile/sqlglot/aggregations/snapshots/test_unary_compiler/test_last/out.sql +6 -0
  180. bigframes-2.37.0/tests/unit/core/compile/sqlglot/aggregations/snapshots/test_unary_compiler/test_last_non_null/out.sql +6 -0
  181. bigframes-2.37.0/tests/unit/core/compile/sqlglot/aggregations/snapshots/test_unary_compiler/test_max/out.sql +12 -0
  182. bigframes-2.37.0/tests/unit/core/compile/sqlglot/aggregations/snapshots/test_unary_compiler/test_max/window_out.sql +3 -0
  183. bigframes-2.37.0/tests/unit/core/compile/sqlglot/aggregations/snapshots/test_unary_compiler/test_max/window_partition_out.sql +3 -0
  184. bigframes-2.37.0/tests/unit/core/compile/sqlglot/aggregations/snapshots/test_unary_compiler/test_mean/out.sql +23 -0
  185. bigframes-2.37.0/tests/unit/core/compile/sqlglot/aggregations/snapshots/test_unary_compiler/test_mean/window_out.sql +3 -0
  186. bigframes-2.37.0/tests/unit/core/compile/sqlglot/aggregations/snapshots/test_unary_compiler/test_mean/window_partition_out.sql +3 -0
  187. bigframes-2.37.0/tests/unit/core/compile/sqlglot/aggregations/snapshots/test_unary_compiler/test_median/out.sql +18 -0
  188. bigframes-2.37.0/tests/unit/core/compile/sqlglot/aggregations/snapshots/test_unary_compiler/test_min/out.sql +12 -0
  189. bigframes-2.37.0/tests/unit/core/compile/sqlglot/aggregations/snapshots/test_unary_compiler/test_min/window_out.sql +3 -0
  190. bigframes-2.37.0/tests/unit/core/compile/sqlglot/aggregations/snapshots/test_unary_compiler/test_min/window_partition_out.sql +3 -0
  191. bigframes-2.37.0/tests/unit/core/compile/sqlglot/aggregations/snapshots/test_unary_compiler/test_nunique/out.sql +12 -0
  192. bigframes-2.37.0/tests/unit/core/compile/sqlglot/aggregations/snapshots/test_unary_compiler/test_pop_var/out.sql +15 -0
  193. bigframes-2.37.0/tests/unit/core/compile/sqlglot/aggregations/snapshots/test_unary_compiler/test_pop_var/window_out.sql +3 -0
  194. bigframes-2.37.0/tests/unit/core/compile/sqlglot/aggregations/snapshots/test_unary_compiler/test_product/out.sql +16 -0
  195. bigframes-2.37.0/tests/unit/core/compile/sqlglot/aggregations/snapshots/test_unary_compiler/test_product/window_partition_out.sql +16 -0
  196. bigframes-2.37.0/tests/unit/core/compile/sqlglot/aggregations/snapshots/test_unary_compiler/test_qcut/out.sql +51 -0
  197. bigframes-2.37.0/tests/unit/core/compile/sqlglot/aggregations/snapshots/test_unary_compiler/test_quantile/out.sql +17 -0
  198. bigframes-2.37.0/tests/unit/core/compile/sqlglot/aggregations/snapshots/test_unary_compiler/test_rank/out.sql +3 -0
  199. bigframes-2.37.0/tests/unit/core/compile/sqlglot/aggregations/snapshots/test_unary_compiler/test_shift/lag.sql +3 -0
  200. bigframes-2.37.0/tests/unit/core/compile/sqlglot/aggregations/snapshots/test_unary_compiler/test_shift/lead.sql +3 -0
  201. bigframes-2.37.0/tests/unit/core/compile/sqlglot/aggregations/snapshots/test_unary_compiler/test_shift/noop.sql +3 -0
  202. bigframes-2.37.0/tests/unit/core/compile/sqlglot/aggregations/snapshots/test_unary_compiler/test_std/out.sql +23 -0
  203. bigframes-2.37.0/tests/unit/core/compile/sqlglot/aggregations/snapshots/test_unary_compiler/test_std/window_out.sql +3 -0
  204. bigframes-2.37.0/tests/unit/core/compile/sqlglot/aggregations/snapshots/test_unary_compiler/test_sum/out.sql +15 -0
  205. bigframes-2.37.0/tests/unit/core/compile/sqlglot/aggregations/snapshots/test_unary_compiler/test_sum/window_out.sql +3 -0
  206. bigframes-2.37.0/tests/unit/core/compile/sqlglot/aggregations/snapshots/test_unary_compiler/test_sum/window_partition_out.sql +3 -0
  207. bigframes-2.37.0/tests/unit/core/compile/sqlglot/aggregations/snapshots/test_unary_compiler/test_var/out.sql +15 -0
  208. bigframes-2.37.0/tests/unit/core/compile/sqlglot/aggregations/snapshots/test_unary_compiler/test_var/window_out.sql +3 -0
  209. bigframes-2.37.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_ai_ops/test_ai_classify/out.sql +7 -0
  210. bigframes-2.37.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_ai_ops/test_ai_generate/out.sql +7 -0
  211. bigframes-2.37.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_ai_ops/test_ai_generate_bool/out.sql +7 -0
  212. bigframes-2.37.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_ai_ops/test_ai_generate_bool_with_connection_id/out.sql +8 -0
  213. bigframes-2.37.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_ai_ops/test_ai_generate_bool_with_model_param/out.sql +7 -0
  214. bigframes-2.37.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_ai_ops/test_ai_generate_double/out.sql +7 -0
  215. bigframes-2.37.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_ai_ops/test_ai_generate_double_with_connection_id/out.sql +8 -0
  216. bigframes-2.37.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_ai_ops/test_ai_generate_double_with_model_param/out.sql +7 -0
  217. bigframes-2.37.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_ai_ops/test_ai_generate_int/out.sql +7 -0
  218. bigframes-2.37.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_ai_ops/test_ai_generate_int_with_connection_id/out.sql +8 -0
  219. bigframes-2.37.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_ai_ops/test_ai_generate_int_with_model_param/out.sql +7 -0
  220. bigframes-2.37.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_ai_ops/test_ai_generate_with_connection_id/out.sql +8 -0
  221. bigframes-2.37.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_ai_ops/test_ai_generate_with_model_param/out.sql +7 -0
  222. bigframes-2.37.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_ai_ops/test_ai_generate_with_output_schema/out.sql +8 -0
  223. bigframes-2.37.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_ai_ops/test_ai_if/out.sql +6 -0
  224. bigframes-2.37.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_ai_ops/test_ai_score/out.sql +6 -0
  225. bigframes-2.37.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_array_ops/test_array_index/out.sql +3 -0
  226. bigframes-2.37.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_array_ops/test_array_reduce_op/out.sql +22 -0
  227. bigframes-2.37.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_array_ops/test_array_slice_with_only_start/out.sql +9 -0
  228. bigframes-2.37.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_array_ops/test_array_slice_with_start_and_stop/out.sql +9 -0
  229. bigframes-2.37.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_array_ops/test_array_to_string/out.sql +3 -0
  230. bigframes-2.37.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_array_ops/test_to_array_op/out.sql +10 -0
  231. bigframes-2.37.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_blob_ops/test_obj_fetch_metadata/out.sql +6 -0
  232. bigframes-2.37.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_blob_ops/test_obj_get_access_url/out.sql +10 -0
  233. bigframes-2.37.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_blob_ops/test_obj_make_ref/out.sql +4 -0
  234. bigframes-2.37.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_bool_ops/test_and_op/out.sql +8 -0
  235. bigframes-2.37.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_bool_ops/test_or_op/out.sql +8 -0
  236. bigframes-2.37.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_bool_ops/test_xor_op/out.sql +17 -0
  237. bigframes-2.37.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_comparison_ops/test_eq_null_match/out.sql +3 -0
  238. bigframes-2.37.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_comparison_ops/test_eq_numeric/out.sql +10 -0
  239. bigframes-2.37.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_comparison_ops/test_ge_numeric/out.sql +9 -0
  240. bigframes-2.37.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_comparison_ops/test_gt_numeric/out.sql +9 -0
  241. bigframes-2.37.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_comparison_ops/test_is_in/out.sql +14 -0
  242. bigframes-2.37.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_comparison_ops/test_le_numeric/out.sql +9 -0
  243. bigframes-2.37.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_comparison_ops/test_lt_numeric/out.sql +9 -0
  244. bigframes-2.37.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_comparison_ops/test_maximum_op/out.sql +3 -0
  245. bigframes-2.37.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_comparison_ops/test_minimum_op/out.sql +3 -0
  246. bigframes-2.37.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_comparison_ops/test_ne_numeric/out.sql +12 -0
  247. bigframes-2.37.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_datetime_ops/test_add_timedelta/out.sql +10 -0
  248. bigframes-2.37.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_datetime_ops/test_date/out.sql +3 -0
  249. bigframes-2.37.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_datetime_ops/test_datetime_to_integer_label/out.sql +26 -0
  250. bigframes-2.37.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_datetime_ops/test_day/out.sql +3 -0
  251. bigframes-2.37.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_datetime_ops/test_dayofweek/out.sql +5 -0
  252. bigframes-2.37.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_datetime_ops/test_dayofyear/out.sql +3 -0
  253. bigframes-2.37.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_datetime_ops/test_floor_dt/out.sql +14 -0
  254. bigframes-2.37.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_datetime_ops/test_hour/out.sql +3 -0
  255. bigframes-2.37.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_datetime_ops/test_integer_label_to_datetime_fixed/out.sql +5 -0
  256. bigframes-2.37.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_datetime_ops/test_integer_label_to_datetime_month/out.sql +39 -0
  257. bigframes-2.37.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_datetime_ops/test_integer_label_to_datetime_quarter/out.sql +43 -0
  258. bigframes-2.37.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_datetime_ops/test_integer_label_to_datetime_week/out.sql +7 -0
  259. bigframes-2.37.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_datetime_ops/test_integer_label_to_datetime_year/out.sql +3 -0
  260. bigframes-2.37.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_datetime_ops/test_iso_day/out.sql +3 -0
  261. bigframes-2.37.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_datetime_ops/test_iso_week/out.sql +3 -0
  262. bigframes-2.37.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_datetime_ops/test_iso_year/out.sql +3 -0
  263. bigframes-2.37.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_datetime_ops/test_minute/out.sql +3 -0
  264. bigframes-2.37.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_datetime_ops/test_month/out.sql +3 -0
  265. bigframes-2.37.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_datetime_ops/test_normalize/out.sql +3 -0
  266. bigframes-2.37.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_datetime_ops/test_quarter/out.sql +3 -0
  267. bigframes-2.37.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_datetime_ops/test_second/out.sql +3 -0
  268. bigframes-2.37.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_datetime_ops/test_strftime/out.sql +6 -0
  269. bigframes-2.37.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_datetime_ops/test_sub_timedelta/out.sql +11 -0
  270. bigframes-2.37.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_datetime_ops/test_time/out.sql +3 -0
  271. bigframes-2.37.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_datetime_ops/test_to_datetime/out.sql +6 -0
  272. bigframes-2.37.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_datetime_ops/test_to_timestamp/out.sql +9 -0
  273. bigframes-2.37.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_datetime_ops/test_unix_micros/out.sql +3 -0
  274. bigframes-2.37.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_datetime_ops/test_unix_millis/out.sql +3 -0
  275. bigframes-2.37.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_datetime_ops/test_unix_seconds/out.sql +3 -0
  276. bigframes-2.37.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_datetime_ops/test_year/out.sql +3 -0
  277. bigframes-2.37.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_generic_ops/test_astype_bool/out.sql +5 -0
  278. bigframes-2.37.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_generic_ops/test_astype_float/out.sql +5 -0
  279. bigframes-2.37.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_generic_ops/test_astype_from_json/out.sql +7 -0
  280. bigframes-2.37.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_generic_ops/test_astype_int/out.sql +11 -0
  281. bigframes-2.37.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_generic_ops/test_astype_json/out.sql +8 -0
  282. bigframes-2.37.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_generic_ops/test_astype_string/out.sql +5 -0
  283. bigframes-2.37.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_generic_ops/test_astype_time_like/out.sql +6 -0
  284. bigframes-2.37.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_generic_ops/test_binary_remote_function_op/out.sql +3 -0
  285. bigframes-2.37.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_generic_ops/test_case_when_op/out.sql +13 -0
  286. bigframes-2.37.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_generic_ops/test_clip/out.sql +3 -0
  287. bigframes-2.37.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_generic_ops/test_coalesce/out.sql +4 -0
  288. bigframes-2.37.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_generic_ops/test_fillna/out.sql +3 -0
  289. bigframes-2.37.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_generic_ops/test_hash/out.sql +3 -0
  290. bigframes-2.37.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_generic_ops/test_invert/out.sql +11 -0
  291. bigframes-2.37.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_generic_ops/test_isnull/out.sql +5 -0
  292. bigframes-2.37.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_generic_ops/test_map/out.sql +9 -0
  293. bigframes-2.37.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_generic_ops/test_nary_remote_function_op/out.sql +3 -0
  294. bigframes-2.37.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_generic_ops/test_notnull/out.sql +5 -0
  295. bigframes-2.37.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_generic_ops/test_remote_function_op/out.sql +8 -0
  296. bigframes-2.37.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_generic_ops/test_row_key/out.sql +46 -0
  297. bigframes-2.37.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_generic_ops/test_sql_scalar_op/out.sql +3 -0
  298. bigframes-2.37.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_generic_ops/test_where/out.sql +3 -0
  299. bigframes-2.37.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_geo_ops/test_geo_area/out.sql +3 -0
  300. bigframes-2.37.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_geo_ops/test_geo_st_astext/out.sql +3 -0
  301. bigframes-2.37.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_geo_ops/test_geo_st_boundary/out.sql +3 -0
  302. bigframes-2.37.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_geo_ops/test_geo_st_buffer/out.sql +3 -0
  303. bigframes-2.37.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_geo_ops/test_geo_st_centroid/out.sql +3 -0
  304. bigframes-2.37.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_geo_ops/test_geo_st_convexhull/out.sql +3 -0
  305. bigframes-2.37.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_geo_ops/test_geo_st_difference/out.sql +3 -0
  306. bigframes-2.37.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_geo_ops/test_geo_st_distance/out.sql +4 -0
  307. bigframes-2.37.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_geo_ops/test_geo_st_geogfromtext/out.sql +3 -0
  308. bigframes-2.37.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_geo_ops/test_geo_st_geogpoint/out.sql +3 -0
  309. bigframes-2.37.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_geo_ops/test_geo_st_intersection/out.sql +3 -0
  310. bigframes-2.37.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_geo_ops/test_geo_st_isclosed/out.sql +3 -0
  311. bigframes-2.37.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_geo_ops/test_geo_st_length/out.sql +3 -0
  312. bigframes-2.37.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_geo_ops/test_geo_x/out.sql +3 -0
  313. bigframes-2.37.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_geo_ops/test_geo_y/out.sql +3 -0
  314. bigframes-2.37.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_json_ops/test_json_extract/out.sql +3 -0
  315. bigframes-2.37.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_json_ops/test_json_extract_array/out.sql +3 -0
  316. bigframes-2.37.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_json_ops/test_json_extract_string_array/out.sql +3 -0
  317. bigframes-2.37.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_json_ops/test_json_keys/out.sql +4 -0
  318. bigframes-2.37.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_json_ops/test_json_query/out.sql +3 -0
  319. bigframes-2.37.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_json_ops/test_json_query_array/out.sql +3 -0
  320. bigframes-2.37.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_json_ops/test_json_set/out.sql +3 -0
  321. bigframes-2.37.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_json_ops/test_json_value/out.sql +3 -0
  322. bigframes-2.37.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_json_ops/test_parse_json/out.sql +3 -0
  323. bigframes-2.37.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_json_ops/test_to_json/out.sql +3 -0
  324. bigframes-2.37.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_json_ops/test_to_json_string/out.sql +3 -0
  325. bigframes-2.37.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_numeric_ops/test_abs/out.sql +3 -0
  326. bigframes-2.37.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_numeric_ops/test_add_numeric/out.sql +9 -0
  327. bigframes-2.37.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_numeric_ops/test_add_string/out.sql +3 -0
  328. bigframes-2.37.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_numeric_ops/test_add_timedelta/out.sql +10 -0
  329. bigframes-2.37.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_numeric_ops/test_arccos/out.sql +7 -0
  330. bigframes-2.37.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_numeric_ops/test_arccosh/out.sql +7 -0
  331. bigframes-2.37.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_numeric_ops/test_arcsin/out.sql +7 -0
  332. bigframes-2.37.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_numeric_ops/test_arcsinh/out.sql +3 -0
  333. bigframes-2.37.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_numeric_ops/test_arctan/out.sql +3 -0
  334. bigframes-2.37.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_numeric_ops/test_arctan2/out.sql +4 -0
  335. bigframes-2.37.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_numeric_ops/test_arctanh/out.sql +9 -0
  336. bigframes-2.37.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_numeric_ops/test_ceil/out.sql +3 -0
  337. bigframes-2.37.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_numeric_ops/test_cos/out.sql +3 -0
  338. bigframes-2.37.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_numeric_ops/test_cosh/out.sql +7 -0
  339. bigframes-2.37.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_numeric_ops/test_cosine_distance/out.sql +4 -0
  340. bigframes-2.37.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_numeric_ops/test_div_numeric/out.sql +14 -0
  341. bigframes-2.37.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_numeric_ops/test_div_timedelta/out.sql +10 -0
  342. bigframes-2.37.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_numeric_ops/test_euclidean_distance/out.sql +4 -0
  343. bigframes-2.37.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_numeric_ops/test_exp/out.sql +7 -0
  344. bigframes-2.37.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_numeric_ops/test_expm1/out.sql +3 -0
  345. bigframes-2.37.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_numeric_ops/test_floor/out.sql +3 -0
  346. bigframes-2.37.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_numeric_ops/test_floordiv_timedelta/out.sql +6 -0
  347. bigframes-2.37.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_numeric_ops/test_isfinite/out.sql +3 -0
  348. bigframes-2.37.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_numeric_ops/test_ln/out.sql +11 -0
  349. bigframes-2.37.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_numeric_ops/test_log10/out.sql +11 -0
  350. bigframes-2.37.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_numeric_ops/test_log1p/out.sql +11 -0
  351. bigframes-2.37.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_numeric_ops/test_manhattan_distance/out.sql +4 -0
  352. bigframes-2.37.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_numeric_ops/test_mod_numeric/out.sql +193 -0
  353. bigframes-2.37.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_numeric_ops/test_mul_numeric/out.sql +9 -0
  354. bigframes-2.37.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_numeric_ops/test_mul_timedelta/out.sql +16 -0
  355. bigframes-2.37.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_numeric_ops/test_neg/out.sql +5 -0
  356. bigframes-2.37.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_numeric_ops/test_pos/out.sql +3 -0
  357. bigframes-2.37.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_numeric_ops/test_pow/out.sql +245 -0
  358. bigframes-2.37.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_numeric_ops/test_round/out.sql +11 -0
  359. bigframes-2.37.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_numeric_ops/test_sin/out.sql +3 -0
  360. bigframes-2.37.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_numeric_ops/test_sinh/out.sql +7 -0
  361. bigframes-2.37.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_numeric_ops/test_sqrt/out.sql +3 -0
  362. bigframes-2.37.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_numeric_ops/test_sub_numeric/out.sql +9 -0
  363. bigframes-2.37.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_numeric_ops/test_sub_timedelta/out.sql +11 -0
  364. bigframes-2.37.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_numeric_ops/test_tan/out.sql +3 -0
  365. bigframes-2.37.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_numeric_ops/test_tanh/out.sql +3 -0
  366. bigframes-2.37.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_numeric_ops/test_unsafe_pow_op/out.sql +14 -0
  367. bigframes-2.37.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_string_ops/test_add_string/out.sql +3 -0
  368. bigframes-2.37.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_string_ops/test_capitalize/out.sql +3 -0
  369. bigframes-2.37.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_string_ops/test_endswith/out.sql +5 -0
  370. bigframes-2.37.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_string_ops/test_isalnum/out.sql +3 -0
  371. bigframes-2.37.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_string_ops/test_isalpha/out.sql +3 -0
  372. bigframes-2.37.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_string_ops/test_isdecimal/out.sql +3 -0
  373. bigframes-2.37.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_string_ops/test_isdigit/out.sql +6 -0
  374. bigframes-2.37.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_string_ops/test_islower/out.sql +3 -0
  375. bigframes-2.37.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_string_ops/test_isnumeric/out.sql +3 -0
  376. bigframes-2.37.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_string_ops/test_isspace/out.sql +3 -0
  377. bigframes-2.37.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_string_ops/test_isupper/out.sql +3 -0
  378. bigframes-2.37.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_string_ops/test_len/out.sql +3 -0
  379. bigframes-2.37.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_string_ops/test_len_w_array/out.sql +3 -0
  380. bigframes-2.37.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_string_ops/test_lower/out.sql +3 -0
  381. bigframes-2.37.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_string_ops/test_lstrip/out.sql +3 -0
  382. bigframes-2.37.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_string_ops/test_regex_replace_str/out.sql +3 -0
  383. bigframes-2.37.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_string_ops/test_replace_str/out.sql +3 -0
  384. bigframes-2.37.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_string_ops/test_reverse/out.sql +3 -0
  385. bigframes-2.37.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_string_ops/test_rstrip/out.sql +3 -0
  386. bigframes-2.37.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_string_ops/test_startswith/out.sql +5 -0
  387. bigframes-2.37.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_string_ops/test_str_contains/out.sql +3 -0
  388. bigframes-2.37.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_string_ops/test_str_contains_regex/out.sql +3 -0
  389. bigframes-2.37.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_string_ops/test_str_extract/out.sql +12 -0
  390. bigframes-2.37.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_string_ops/test_str_find/out.sql +6 -0
  391. bigframes-2.37.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_string_ops/test_str_get/out.sql +3 -0
  392. bigframes-2.37.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_string_ops/test_str_pad/out.sql +13 -0
  393. bigframes-2.37.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_string_ops/test_str_repeat/out.sql +3 -0
  394. bigframes-2.37.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_string_ops/test_str_slice/out.sql +3 -0
  395. bigframes-2.37.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_string_ops/test_strconcat/out.sql +3 -0
  396. bigframes-2.37.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_string_ops/test_string_split/out.sql +3 -0
  397. bigframes-2.37.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_string_ops/test_strip/out.sql +3 -0
  398. bigframes-2.37.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_string_ops/test_upper/out.sql +3 -0
  399. bigframes-2.37.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_string_ops/test_zfill/out.sql +7 -0
  400. bigframes-2.37.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_struct_ops/test_struct_field/out.sql +4 -0
  401. bigframes-2.37.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_struct_ops/test_struct_op/out.sql +8 -0
  402. bigframes-2.37.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_timedelta_ops/test_timedelta_floor/out.sql +3 -0
  403. bigframes-2.37.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_timedelta_ops/test_to_timedelta/out.sql +9 -0
  404. bigframes-2.37.0/tests/unit/core/compile/sqlglot/expressions/test_datetime_ops.py +367 -0
  405. bigframes-2.37.0/tests/unit/core/compile/sqlglot/expressions/test_numeric_ops.py +500 -0
  406. bigframes-2.37.0/tests/unit/core/compile/sqlglot/expressions/test_string_ops.py +331 -0
  407. bigframes-2.37.0/tests/unit/core/compile/sqlglot/snapshots/test_compile_aggregate/test_compile_aggregate/out.sql +23 -0
  408. bigframes-2.37.0/tests/unit/core/compile/sqlglot/snapshots/test_compile_aggregate/test_compile_aggregate_wo_dropna/out.sql +21 -0
  409. bigframes-2.37.0/tests/unit/core/compile/sqlglot/snapshots/test_compile_concat/test_compile_concat/out.sql +41 -0
  410. bigframes-2.37.0/tests/unit/core/compile/sqlglot/snapshots/test_compile_concat/test_compile_concat_filter_sorted/out.sql +55 -0
  411. bigframes-2.37.0/tests/unit/core/compile/sqlglot/snapshots/test_compile_explode/test_compile_explode_dataframe/out.sql +21 -0
  412. bigframes-2.37.0/tests/unit/core/compile/sqlglot/snapshots/test_compile_explode/test_compile_explode_series/out.sql +18 -0
  413. bigframes-2.37.0/tests/unit/core/compile/sqlglot/snapshots/test_compile_filter/test_compile_filter/out.sql +7 -0
  414. bigframes-2.37.0/tests/unit/core/compile/sqlglot/snapshots/test_compile_fromrange/test_compile_fromrange/out.sql +165 -0
  415. bigframes-2.37.0/tests/unit/core/compile/sqlglot/snapshots/test_compile_geo/test_st_regionstats/out.sql +51 -0
  416. bigframes-2.37.0/tests/unit/core/compile/sqlglot/snapshots/test_compile_geo/test_st_regionstats_without_optional_args/out.sql +15 -0
  417. bigframes-2.37.0/tests/unit/core/compile/sqlglot/snapshots/test_compile_geo/test_st_simplify/out.sql +10 -0
  418. bigframes-2.37.0/tests/unit/core/compile/sqlglot/snapshots/test_compile_isin/test_compile_isin/out.sql +36 -0
  419. bigframes-2.37.0/tests/unit/core/compile/sqlglot/snapshots/test_compile_isin/test_compile_isin_not_nullable/out.sql +29 -0
  420. bigframes-2.37.0/tests/unit/core/compile/sqlglot/snapshots/test_compile_join/test_compile_join/out.sql +22 -0
  421. bigframes-2.37.0/tests/unit/core/compile/sqlglot/snapshots/test_compile_join/test_compile_join_w_on/bool_col/out.sql +23 -0
  422. bigframes-2.37.0/tests/unit/core/compile/sqlglot/snapshots/test_compile_join/test_compile_join_w_on/float64_col/out.sql +23 -0
  423. bigframes-2.37.0/tests/unit/core/compile/sqlglot/snapshots/test_compile_join/test_compile_join_w_on/int64_col/out.sql +23 -0
  424. bigframes-2.37.0/tests/unit/core/compile/sqlglot/snapshots/test_compile_join/test_compile_join_w_on/numeric_col/out.sql +23 -0
  425. bigframes-2.37.0/tests/unit/core/compile/sqlglot/snapshots/test_compile_join/test_compile_join_w_on/string_col/out.sql +23 -0
  426. bigframes-2.37.0/tests/unit/core/compile/sqlglot/snapshots/test_compile_join/test_compile_join_w_on/time_col/out.sql +23 -0
  427. bigframes-2.37.0/tests/unit/core/compile/sqlglot/snapshots/test_compile_random_sample/test_compile_random_sample/out.sql +183 -0
  428. bigframes-2.37.0/tests/unit/core/compile/sqlglot/snapshots/test_compile_readtable/test_compile_readtable/out.sql +18 -0
  429. bigframes-2.37.0/tests/unit/core/compile/sqlglot/snapshots/test_compile_readtable/test_compile_readtable_w_columns_filters/out.sql +10 -0
  430. bigframes-2.37.0/tests/unit/core/compile/sqlglot/snapshots/test_compile_readtable/test_compile_readtable_w_json_types/out.sql +3 -0
  431. bigframes-2.37.0/tests/unit/core/compile/sqlglot/snapshots/test_compile_readtable/test_compile_readtable_w_limit/out.sql +7 -0
  432. bigframes-2.37.0/tests/unit/core/compile/sqlglot/snapshots/test_compile_readtable/test_compile_readtable_w_nested_structs_types/out.sql +5 -0
  433. bigframes-2.37.0/tests/unit/core/compile/sqlglot/snapshots/test_compile_readtable/test_compile_readtable_w_ordering/out.sql +6 -0
  434. bigframes-2.37.0/tests/unit/core/compile/sqlglot/snapshots/test_compile_readtable/test_compile_readtable_w_repeated_types/out.sql +11 -0
  435. bigframes-2.37.0/tests/unit/core/compile/sqlglot/snapshots/test_compile_readtable/test_compile_readtable_w_system_time/out.sql +3 -0
  436. bigframes-2.37.0/tests/unit/core/compile/sqlglot/snapshots/test_compile_window/test_compile_window_w_groupby_rolling/out.sql +55 -0
  437. bigframes-2.37.0/tests/unit/core/compile/sqlglot/snapshots/test_compile_window/test_compile_window_w_range_rolling/out.sql +31 -0
  438. bigframes-2.37.0/tests/unit/core/compile/sqlglot/snapshots/test_compile_window/test_compile_window_w_skips_nulls_op/out.sql +19 -0
  439. bigframes-2.37.0/tests/unit/core/compile/sqlglot/snapshots/test_compile_window/test_compile_window_wo_skips_nulls_op/out.sql +13 -0
  440. bigframes-2.37.0/tests/unit/core/compile/sqlglot/test_compile_concat.py +48 -0
  441. bigframes-2.37.0/tests/unit/core/compile/sqlglot/test_compile_fromrange.py +35 -0
  442. bigframes-2.37.0/tests/unit/core/compile/sqlglot/test_compile_readtable.py +82 -0
  443. bigframes-2.37.0/tests/unit/core/compile/sqlglot/test_scalar_compiler.py +226 -0
  444. bigframes-2.37.0/tests/unit/core/rewrite/conftest.py +84 -0
  445. bigframes-2.37.0/tests/unit/core/rewrite/test_identifiers.py +201 -0
  446. bigframes-2.37.0/tests/unit/core/test_groupby.py +264 -0
  447. bigframes-2.37.0/tests/unit/display/test_anywidget.py +181 -0
  448. bigframes-2.37.0/tests/unit/display/test_render_mode.py +106 -0
  449. bigframes-2.37.0/tests/unit/functions/test_remote_function_utils.py +527 -0
  450. bigframes-2.37.0/tests/unit/session/test_read_gbq_table.py +191 -0
  451. bigframes-2.37.0/tests/unit/session/test_session.py +561 -0
  452. bigframes-2.37.0/tests/unit/test_col.py +229 -0
  453. bigframes-2.37.0/tests/unit/test_dataframe_polars.py +4480 -0
  454. bigframes-2.37.0/tests/unit/test_planner.py +117 -0
  455. bigframes-2.37.0/tests/unit/test_series_polars.py +5140 -0
  456. bigframes-2.37.0/third_party/bigframes_vendored/ibis/expr/operations/numeric.py +374 -0
  457. bigframes-2.37.0/third_party/bigframes_vendored/pandas/core/computation/align.py +225 -0
  458. bigframes-2.37.0/third_party/bigframes_vendored/pandas/core/computation/eval.py +368 -0
  459. bigframes-2.37.0/third_party/bigframes_vendored/pandas/core/config_init.py +233 -0
  460. bigframes-2.37.0/third_party/bigframes_vendored/pandas/core/frame.py +7509 -0
  461. bigframes-2.37.0/third_party/bigframes_vendored/pandas/core/generic.py +1255 -0
  462. bigframes-2.37.0/third_party/bigframes_vendored/pandas/core/indexes/accessor.py +551 -0
  463. bigframes-2.37.0/third_party/bigframes_vendored/pandas/core/series.py +6083 -0
  464. bigframes-2.37.0/third_party/bigframes_vendored/sklearn/metrics/_classification.py +257 -0
  465. bigframes-2.37.0/third_party/bigframes_vendored/sklearn/preprocessing/_encoder.py +89 -0
  466. bigframes-2.37.0/third_party/bigframes_vendored/sqlglot/generator.py +5825 -0
  467. bigframes-2.37.0/third_party/bigframes_vendored/version.py +19 -0
  468. bigframes-2.35.0/PKG-INFO +0 -191
  469. bigframes-2.35.0/README.rst +0 -95
  470. bigframes-2.35.0/bigframes/_config/auth.py +0 -57
  471. bigframes-2.35.0/bigframes/_config/bigquery_options.py +0 -450
  472. bigframes-2.35.0/bigframes/_config/compute_options.py +0 -187
  473. bigframes-2.35.0/bigframes/_config/experiment_options.py +0 -147
  474. bigframes-2.35.0/bigframes/_config/sampling_options.py +0 -118
  475. bigframes-2.35.0/bigframes/bigquery/_operations/ai.py +0 -935
  476. bigframes-2.35.0/bigframes/bigquery/_operations/sql.py +0 -90
  477. bigframes-2.35.0/bigframes/bigquery/ai.py +0 -43
  478. bigframes-2.35.0/bigframes/core/array_value.py +0 -634
  479. bigframes-2.35.0/bigframes/core/block_transforms.py +0 -895
  480. bigframes-2.35.0/bigframes/core/blocks.py +0 -3504
  481. bigframes-2.35.0/bigframes/core/bq_data.py +0 -247
  482. bigframes-2.35.0/bigframes/core/col.py +0 -126
  483. bigframes-2.35.0/bigframes/core/compile/compiled.py +0 -561
  484. bigframes-2.35.0/bigframes/core/compile/googlesql/__init__.py +0 -61
  485. bigframes-2.35.0/bigframes/core/compile/googlesql/abc.py +0 -25
  486. bigframes-2.35.0/bigframes/core/compile/googlesql/datatype.py +0 -23
  487. bigframes-2.35.0/bigframes/core/compile/googlesql/expression.py +0 -124
  488. bigframes-2.35.0/bigframes/core/compile/googlesql/function.py +0 -32
  489. bigframes-2.35.0/bigframes/core/compile/googlesql/query.py +0 -231
  490. bigframes-2.35.0/bigframes/core/compile/ibis_compiler/ibis_compiler.py +0 -296
  491. bigframes-2.35.0/bigframes/core/compile/ibis_compiler/scalar_op_registry.py +0 -2190
  492. bigframes-2.35.0/bigframes/core/compile/polars/lowering.py +0 -472
  493. bigframes-2.35.0/bigframes/core/compile/sqlglot/aggregate_compiler.py +0 -76
  494. bigframes-2.35.0/bigframes/core/compile/sqlglot/aggregations/binary_compiler.py +0 -58
  495. bigframes-2.35.0/bigframes/core/compile/sqlglot/aggregations/nullary_compiler.py +0 -53
  496. bigframes-2.35.0/bigframes/core/compile/sqlglot/aggregations/unary_compiler.py +0 -620
  497. bigframes-2.35.0/bigframes/core/compile/sqlglot/aggregations/windows.py +0 -205
  498. bigframes-2.35.0/bigframes/core/compile/sqlglot/compiler.py +0 -404
  499. bigframes-2.35.0/bigframes/core/compile/sqlglot/expressions/ai_ops.py +0 -148
  500. bigframes-2.35.0/bigframes/core/compile/sqlglot/expressions/array_ops.py +0 -155
  501. bigframes-2.35.0/bigframes/core/compile/sqlglot/expressions/blob_ops.py +0 -52
  502. bigframes-2.35.0/bigframes/core/compile/sqlglot/expressions/bool_ops.py +0 -85
  503. bigframes-2.35.0/bigframes/core/compile/sqlglot/expressions/comparison_ops.py +0 -174
  504. bigframes-2.35.0/bigframes/core/compile/sqlglot/expressions/date_ops.py +0 -72
  505. bigframes-2.35.0/bigframes/core/compile/sqlglot/expressions/datetime_ops.py +0 -673
  506. bigframes-2.35.0/bigframes/core/compile/sqlglot/expressions/generic_ops.py +0 -336
  507. bigframes-2.35.0/bigframes/core/compile/sqlglot/expressions/geo_ops.py +0 -131
  508. bigframes-2.35.0/bigframes/core/compile/sqlglot/expressions/json_ops.py +0 -84
  509. bigframes-2.35.0/bigframes/core/compile/sqlglot/expressions/numeric_ops.py +0 -663
  510. bigframes-2.35.0/bigframes/core/compile/sqlglot/expressions/string_ops.py +0 -382
  511. bigframes-2.35.0/bigframes/core/compile/sqlglot/expressions/struct_ops.py +0 -53
  512. bigframes-2.35.0/bigframes/core/compile/sqlglot/expressions/timedelta_ops.py +0 -44
  513. bigframes-2.35.0/bigframes/core/compile/sqlglot/scalar_compiler.py +0 -221
  514. bigframes-2.35.0/bigframes/core/compile/sqlglot/sqlglot_ir.py +0 -850
  515. bigframes-2.35.0/bigframes/core/expression_factoring.py +0 -463
  516. bigframes-2.35.0/bigframes/core/groupby/dataframe_group_by.py +0 -782
  517. bigframes-2.35.0/bigframes/core/groupby/series_group_by.py +0 -453
  518. bigframes-2.35.0/bigframes/core/indexers.py +0 -552
  519. bigframes-2.35.0/bigframes/core/indexes/base.py +0 -848
  520. bigframes-2.35.0/bigframes/core/indexes/datetimes.py +0 -56
  521. bigframes-2.35.0/bigframes/core/indexes/multi.py +0 -115
  522. bigframes-2.35.0/bigframes/core/nodes.py +0 -1742
  523. bigframes-2.35.0/bigframes/core/rewrite/__init__.py +0 -47
  524. bigframes-2.35.0/bigframes/core/rewrite/identifiers.py +0 -93
  525. bigframes-2.35.0/bigframes/core/rewrite/select_pullup.py +0 -178
  526. bigframes-2.35.0/bigframes/core/rewrite/timedeltas.py +0 -266
  527. bigframes-2.35.0/bigframes/core/rewrite/windows.py +0 -76
  528. bigframes-2.35.0/bigframes/core/schema.py +0 -151
  529. bigframes-2.35.0/bigframes/core/sql/__init__.py +0 -248
  530. bigframes-2.35.0/bigframes/core/sql/ml.py +0 -296
  531. bigframes-2.35.0/bigframes/core/utils.py +0 -251
  532. bigframes-2.35.0/bigframes/core/window/rolling.py +0 -277
  533. bigframes-2.35.0/bigframes/dataframe.py +0 -5178
  534. bigframes-2.35.0/bigframes/display/html.py +0 -383
  535. bigframes-2.35.0/bigframes/dtypes.py +0 -987
  536. bigframes-2.35.0/bigframes/functions/_function_client.py +0 -698
  537. bigframes-2.35.0/bigframes/functions/_function_session.py +0 -1005
  538. bigframes-2.35.0/bigframes/functions/function_template.py +0 -378
  539. bigframes-2.35.0/bigframes/geopandas/geoseries.py +0 -130
  540. bigframes-2.35.0/bigframes/ml/base.py +0 -382
  541. bigframes-2.35.0/bigframes/ml/cluster.py +0 -197
  542. bigframes-2.35.0/bigframes/ml/compose.py +0 -360
  543. bigframes-2.35.0/bigframes/ml/decomposition.py +0 -371
  544. bigframes-2.35.0/bigframes/ml/ensemble.py +0 -697
  545. bigframes-2.35.0/bigframes/ml/imported.py +0 -304
  546. bigframes-2.35.0/bigframes/ml/impute.py +0 -122
  547. bigframes-2.35.0/bigframes/ml/llm.py +0 -1069
  548. bigframes-2.35.0/bigframes/ml/metrics/_metrics.py +0 -411
  549. bigframes-2.35.0/bigframes/ml/model_selection.py +0 -227
  550. bigframes-2.35.0/bigframes/ml/preprocessing.py +0 -723
  551. bigframes-2.35.0/bigframes/ml/sql.py +0 -437
  552. bigframes-2.35.0/bigframes/operations/blob.py +0 -1080
  553. bigframes-2.35.0/bigframes/operations/datetime_ops.py +0 -154
  554. bigframes-2.35.0/bigframes/operations/datetimes.py +0 -167
  555. bigframes-2.35.0/bigframes/operations/lists.py +0 -46
  556. bigframes-2.35.0/bigframes/operations/plotting.py +0 -108
  557. bigframes-2.35.0/bigframes/operations/strings.py +0 -353
  558. bigframes-2.35.0/bigframes/operations/structs.py +0 -91
  559. bigframes-2.35.0/bigframes/pandas/__init__.py +0 -475
  560. bigframes-2.35.0/bigframes/pandas/io/api.py +0 -701
  561. bigframes-2.35.0/bigframes/series.py +0 -2823
  562. bigframes-2.35.0/bigframes/session/__init__.py +0 -2429
  563. bigframes-2.35.0/bigframes/session/_io/bigquery/__init__.py +0 -655
  564. bigframes-2.35.0/bigframes/session/_io/bigquery/read_gbq_table.py +0 -495
  565. bigframes-2.35.0/bigframes/session/bigquery_session.py +0 -214
  566. bigframes-2.35.0/bigframes/session/bq_caching_executor.py +0 -749
  567. bigframes-2.35.0/bigframes/session/dry_runs.py +0 -182
  568. bigframes-2.35.0/bigframes/session/loader.py +0 -1432
  569. bigframes-2.35.0/bigframes/session/polars_executor.py +0 -162
  570. bigframes-2.35.0/bigframes/session/read_api_execution.py +0 -87
  571. bigframes-2.35.0/bigframes/streaming/dataframe.py +0 -573
  572. bigframes-2.35.0/bigframes/testing/__init__.py +0 -19
  573. bigframes-2.35.0/bigframes/testing/utils.py +0 -536
  574. bigframes-2.35.0/bigframes/version.py +0 -19
  575. bigframes-2.35.0/bigframes.egg-info/PKG-INFO +0 -191
  576. bigframes-2.35.0/bigframes.egg-info/SOURCES.txt +0 -1295
  577. bigframes-2.35.0/bigframes.egg-info/requires.txt +0 -65
  578. bigframes-2.35.0/setup.py +0 -154
  579. bigframes-2.35.0/tests/system/large/bigquery/test_ai.py +0 -96
  580. bigframes-2.35.0/tests/system/large/functions/test_managed_function.py +0 -1333
  581. bigframes-2.35.0/tests/system/large/functions/test_remote_function.py +0 -3233
  582. bigframes-2.35.0/tests/system/large/ml/test_llm.py +0 -233
  583. bigframes-2.35.0/tests/system/large/ml/test_multimodal_llm.py +0 -45
  584. bigframes-2.35.0/tests/system/load/test_llm.py +0 -187
  585. bigframes-2.35.0/tests/system/small/bigquery/test_array.py +0 -198
  586. bigframes-2.35.0/tests/system/small/bigquery/test_datetime.py +0 -137
  587. bigframes-2.35.0/tests/system/small/bigquery/test_geo.py +0 -491
  588. bigframes-2.35.0/tests/system/small/bigquery/test_sql.py +0 -161
  589. bigframes-2.35.0/tests/system/small/bigquery/test_struct.py +0 -61
  590. bigframes-2.35.0/tests/system/small/core/test_reshape.py +0 -120
  591. bigframes-2.35.0/tests/system/small/engines/test_numeric_ops.py +0 -170
  592. bigframes-2.35.0/tests/system/small/ml/test_llm.py +0 -611
  593. bigframes-2.35.0/tests/system/small/ml/test_metrics.py +0 -892
  594. bigframes-2.35.0/tests/system/small/ml/test_model_selection.py +0 -551
  595. bigframes-2.35.0/tests/system/small/ml/test_multimodal_llm.py +0 -84
  596. bigframes-2.35.0/tests/system/small/ml/test_utils.py +0 -80
  597. bigframes-2.35.0/tests/system/small/operations/test_dates.py +0 -91
  598. bigframes-2.35.0/tests/system/small/operations/test_datetimes.py +0 -635
  599. bigframes-2.35.0/tests/system/small/operations/test_timedeltas.py +0 -634
  600. bigframes-2.35.0/tests/system/small/test_anywidget.py +0 -1169
  601. bigframes-2.35.0/tests/system/small/test_dataframe.py +0 -6220
  602. bigframes-2.35.0/tests/system/small/test_dataframe_io.py +0 -1201
  603. bigframes-2.35.0/tests/system/small/test_groupby.py +0 -953
  604. bigframes-2.35.0/tests/system/small/test_index_io.py +0 -58
  605. bigframes-2.35.0/tests/system/small/test_multiindex.py +0 -1487
  606. bigframes-2.35.0/tests/system/small/test_null_index.py +0 -436
  607. bigframes-2.35.0/tests/system/small/test_numpy.py +0 -157
  608. bigframes-2.35.0/tests/system/small/test_pandas.py +0 -1092
  609. bigframes-2.35.0/tests/system/small/test_pandas_options.py +0 -372
  610. bigframes-2.35.0/tests/system/small/test_progress_bar.py +0 -169
  611. bigframes-2.35.0/tests/system/small/test_series.py +0 -4959
  612. bigframes-2.35.0/tests/system/small/test_series_io.py +0 -127
  613. bigframes-2.35.0/tests/system/small/test_session.py +0 -2235
  614. bigframes-2.35.0/tests/system/small/test_unordered.py +0 -293
  615. bigframes-2.35.0/tests/system/small/test_window.py +0 -466
  616. bigframes-2.35.0/tests/unit/bigquery/test_ai.py +0 -244
  617. bigframes-2.35.0/tests/unit/core/compile/googlesql/test_expression.py +0 -37
  618. bigframes-2.35.0/tests/unit/core/compile/googlesql/test_function.py +0 -21
  619. bigframes-2.35.0/tests/unit/core/compile/googlesql/test_query.py +0 -223
  620. bigframes-2.35.0/tests/unit/core/compile/sqlglot/aggregations/snapshots/test_binary_compiler/test_corr/out.sql +0 -13
  621. bigframes-2.35.0/tests/unit/core/compile/sqlglot/aggregations/snapshots/test_binary_compiler/test_cov/out.sql +0 -13
  622. bigframes-2.35.0/tests/unit/core/compile/sqlglot/aggregations/snapshots/test_nullary_compiler/test_row_number/out.sql +0 -27
  623. bigframes-2.35.0/tests/unit/core/compile/sqlglot/aggregations/snapshots/test_nullary_compiler/test_row_number_with_window/out.sql +0 -13
  624. bigframes-2.35.0/tests/unit/core/compile/sqlglot/aggregations/snapshots/test_nullary_compiler/test_size/out.sql +0 -26
  625. bigframes-2.35.0/tests/unit/core/compile/sqlglot/aggregations/snapshots/test_ordered_unary_compiler/test_array_agg/out.sql +0 -12
  626. bigframes-2.35.0/tests/unit/core/compile/sqlglot/aggregations/snapshots/test_ordered_unary_compiler/test_string_agg/out.sql +0 -18
  627. bigframes-2.35.0/tests/unit/core/compile/sqlglot/aggregations/snapshots/test_unary_compiler/test_all/out.sql +0 -15
  628. bigframes-2.35.0/tests/unit/core/compile/sqlglot/aggregations/snapshots/test_unary_compiler/test_all_w_window/out.sql +0 -13
  629. bigframes-2.35.0/tests/unit/core/compile/sqlglot/aggregations/snapshots/test_unary_compiler/test_any/out.sql +0 -15
  630. bigframes-2.35.0/tests/unit/core/compile/sqlglot/aggregations/snapshots/test_unary_compiler/test_any_value/out.sql +0 -12
  631. bigframes-2.35.0/tests/unit/core/compile/sqlglot/aggregations/snapshots/test_unary_compiler/test_any_value/window_out.sql +0 -13
  632. bigframes-2.35.0/tests/unit/core/compile/sqlglot/aggregations/snapshots/test_unary_compiler/test_any_value/window_partition_out.sql +0 -14
  633. bigframes-2.35.0/tests/unit/core/compile/sqlglot/aggregations/snapshots/test_unary_compiler/test_any_w_window/out.sql +0 -13
  634. bigframes-2.35.0/tests/unit/core/compile/sqlglot/aggregations/snapshots/test_unary_compiler/test_approx_quartiles/out.sql +0 -16
  635. bigframes-2.35.0/tests/unit/core/compile/sqlglot/aggregations/snapshots/test_unary_compiler/test_approx_top_count/out.sql +0 -12
  636. bigframes-2.35.0/tests/unit/core/compile/sqlglot/aggregations/snapshots/test_unary_compiler/test_count/out.sql +0 -12
  637. bigframes-2.35.0/tests/unit/core/compile/sqlglot/aggregations/snapshots/test_unary_compiler/test_count/window_out.sql +0 -13
  638. bigframes-2.35.0/tests/unit/core/compile/sqlglot/aggregations/snapshots/test_unary_compiler/test_count/window_partition_out.sql +0 -14
  639. bigframes-2.35.0/tests/unit/core/compile/sqlglot/aggregations/snapshots/test_unary_compiler/test_cut/int_bins.sql +0 -55
  640. bigframes-2.35.0/tests/unit/core/compile/sqlglot/aggregations/snapshots/test_unary_compiler/test_cut/int_bins_labels.sql +0 -24
  641. bigframes-2.35.0/tests/unit/core/compile/sqlglot/aggregations/snapshots/test_unary_compiler/test_cut/interval_bins.sql +0 -18
  642. bigframes-2.35.0/tests/unit/core/compile/sqlglot/aggregations/snapshots/test_unary_compiler/test_cut/interval_bins_labels.sql +0 -18
  643. bigframes-2.35.0/tests/unit/core/compile/sqlglot/aggregations/snapshots/test_unary_compiler/test_dense_rank/out.sql +0 -13
  644. bigframes-2.35.0/tests/unit/core/compile/sqlglot/aggregations/snapshots/test_unary_compiler/test_diff_w_bool/out.sql +0 -13
  645. bigframes-2.35.0/tests/unit/core/compile/sqlglot/aggregations/snapshots/test_unary_compiler/test_diff_w_date/out.sql +0 -15
  646. bigframes-2.35.0/tests/unit/core/compile/sqlglot/aggregations/snapshots/test_unary_compiler/test_diff_w_datetime/out.sql +0 -17
  647. bigframes-2.35.0/tests/unit/core/compile/sqlglot/aggregations/snapshots/test_unary_compiler/test_diff_w_int/out.sql +0 -13
  648. bigframes-2.35.0/tests/unit/core/compile/sqlglot/aggregations/snapshots/test_unary_compiler/test_diff_w_timestamp/out.sql +0 -17
  649. bigframes-2.35.0/tests/unit/core/compile/sqlglot/aggregations/snapshots/test_unary_compiler/test_first/out.sql +0 -16
  650. bigframes-2.35.0/tests/unit/core/compile/sqlglot/aggregations/snapshots/test_unary_compiler/test_first_non_null/out.sql +0 -16
  651. bigframes-2.35.0/tests/unit/core/compile/sqlglot/aggregations/snapshots/test_unary_compiler/test_last/out.sql +0 -16
  652. bigframes-2.35.0/tests/unit/core/compile/sqlglot/aggregations/snapshots/test_unary_compiler/test_last_non_null/out.sql +0 -16
  653. bigframes-2.35.0/tests/unit/core/compile/sqlglot/aggregations/snapshots/test_unary_compiler/test_max/out.sql +0 -12
  654. bigframes-2.35.0/tests/unit/core/compile/sqlglot/aggregations/snapshots/test_unary_compiler/test_max/window_out.sql +0 -13
  655. bigframes-2.35.0/tests/unit/core/compile/sqlglot/aggregations/snapshots/test_unary_compiler/test_max/window_partition_out.sql +0 -14
  656. bigframes-2.35.0/tests/unit/core/compile/sqlglot/aggregations/snapshots/test_unary_compiler/test_mean/out.sql +0 -27
  657. bigframes-2.35.0/tests/unit/core/compile/sqlglot/aggregations/snapshots/test_unary_compiler/test_mean/window_out.sql +0 -13
  658. bigframes-2.35.0/tests/unit/core/compile/sqlglot/aggregations/snapshots/test_unary_compiler/test_mean/window_partition_out.sql +0 -14
  659. bigframes-2.35.0/tests/unit/core/compile/sqlglot/aggregations/snapshots/test_unary_compiler/test_median/out.sql +0 -18
  660. bigframes-2.35.0/tests/unit/core/compile/sqlglot/aggregations/snapshots/test_unary_compiler/test_min/out.sql +0 -12
  661. bigframes-2.35.0/tests/unit/core/compile/sqlglot/aggregations/snapshots/test_unary_compiler/test_min/window_out.sql +0 -13
  662. bigframes-2.35.0/tests/unit/core/compile/sqlglot/aggregations/snapshots/test_unary_compiler/test_min/window_partition_out.sql +0 -14
  663. bigframes-2.35.0/tests/unit/core/compile/sqlglot/aggregations/snapshots/test_unary_compiler/test_nunique/out.sql +0 -12
  664. bigframes-2.35.0/tests/unit/core/compile/sqlglot/aggregations/snapshots/test_unary_compiler/test_pop_var/out.sql +0 -15
  665. bigframes-2.35.0/tests/unit/core/compile/sqlglot/aggregations/snapshots/test_unary_compiler/test_pop_var/window_out.sql +0 -13
  666. bigframes-2.35.0/tests/unit/core/compile/sqlglot/aggregations/snapshots/test_unary_compiler/test_product/out.sql +0 -16
  667. bigframes-2.35.0/tests/unit/core/compile/sqlglot/aggregations/snapshots/test_unary_compiler/test_product/window_partition_out.sql +0 -27
  668. bigframes-2.35.0/tests/unit/core/compile/sqlglot/aggregations/snapshots/test_unary_compiler/test_qcut/out.sql +0 -61
  669. bigframes-2.35.0/tests/unit/core/compile/sqlglot/aggregations/snapshots/test_unary_compiler/test_quantile/out.sql +0 -17
  670. bigframes-2.35.0/tests/unit/core/compile/sqlglot/aggregations/snapshots/test_unary_compiler/test_rank/out.sql +0 -13
  671. bigframes-2.35.0/tests/unit/core/compile/sqlglot/aggregations/snapshots/test_unary_compiler/test_shift/lag.sql +0 -13
  672. bigframes-2.35.0/tests/unit/core/compile/sqlglot/aggregations/snapshots/test_unary_compiler/test_shift/lead.sql +0 -13
  673. bigframes-2.35.0/tests/unit/core/compile/sqlglot/aggregations/snapshots/test_unary_compiler/test_shift/noop.sql +0 -13
  674. bigframes-2.35.0/tests/unit/core/compile/sqlglot/aggregations/snapshots/test_unary_compiler/test_std/out.sql +0 -27
  675. bigframes-2.35.0/tests/unit/core/compile/sqlglot/aggregations/snapshots/test_unary_compiler/test_std/window_out.sql +0 -13
  676. bigframes-2.35.0/tests/unit/core/compile/sqlglot/aggregations/snapshots/test_unary_compiler/test_sum/out.sql +0 -15
  677. bigframes-2.35.0/tests/unit/core/compile/sqlglot/aggregations/snapshots/test_unary_compiler/test_sum/window_out.sql +0 -13
  678. bigframes-2.35.0/tests/unit/core/compile/sqlglot/aggregations/snapshots/test_unary_compiler/test_sum/window_partition_out.sql +0 -14
  679. bigframes-2.35.0/tests/unit/core/compile/sqlglot/aggregations/snapshots/test_unary_compiler/test_var/out.sql +0 -15
  680. bigframes-2.35.0/tests/unit/core/compile/sqlglot/aggregations/snapshots/test_unary_compiler/test_var/window_out.sql +0 -13
  681. bigframes-2.35.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_ai_ops/test_ai_classify/out.sql +0 -17
  682. bigframes-2.35.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_ai_ops/test_ai_generate/out.sql +0 -17
  683. bigframes-2.35.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_ai_ops/test_ai_generate_bool/out.sql +0 -17
  684. bigframes-2.35.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_ai_ops/test_ai_generate_bool_with_connection_id/out.sql +0 -18
  685. bigframes-2.35.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_ai_ops/test_ai_generate_bool_with_model_param/out.sql +0 -17
  686. bigframes-2.35.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_ai_ops/test_ai_generate_double/out.sql +0 -17
  687. bigframes-2.35.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_ai_ops/test_ai_generate_double_with_connection_id/out.sql +0 -18
  688. bigframes-2.35.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_ai_ops/test_ai_generate_double_with_model_param/out.sql +0 -17
  689. bigframes-2.35.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_ai_ops/test_ai_generate_int/out.sql +0 -17
  690. bigframes-2.35.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_ai_ops/test_ai_generate_int_with_connection_id/out.sql +0 -18
  691. bigframes-2.35.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_ai_ops/test_ai_generate_int_with_model_param/out.sql +0 -17
  692. bigframes-2.35.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_ai_ops/test_ai_generate_with_connection_id/out.sql +0 -18
  693. bigframes-2.35.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_ai_ops/test_ai_generate_with_model_param/out.sql +0 -17
  694. bigframes-2.35.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_ai_ops/test_ai_generate_with_output_schema/out.sql +0 -18
  695. bigframes-2.35.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_ai_ops/test_ai_if/out.sql +0 -16
  696. bigframes-2.35.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_ai_ops/test_ai_score/out.sql +0 -16
  697. bigframes-2.35.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_array_ops/test_array_index/out.sql +0 -13
  698. bigframes-2.35.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_array_ops/test_array_reduce_op/out.sql +0 -37
  699. bigframes-2.35.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_array_ops/test_array_slice_with_only_start/out.sql +0 -19
  700. bigframes-2.35.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_array_ops/test_array_slice_with_start_and_stop/out.sql +0 -19
  701. bigframes-2.35.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_array_ops/test_array_to_string/out.sql +0 -13
  702. bigframes-2.35.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_array_ops/test_to_array_op/out.sql +0 -26
  703. bigframes-2.35.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_blob_ops/test_obj_fetch_metadata/out.sql +0 -25
  704. bigframes-2.35.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_blob_ops/test_obj_get_access_url/out.sql +0 -25
  705. bigframes-2.35.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_blob_ops/test_obj_make_ref/out.sql +0 -15
  706. bigframes-2.35.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_bool_ops/test_and_op/out.sql +0 -42
  707. bigframes-2.35.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_bool_ops/test_or_op/out.sql +0 -42
  708. bigframes-2.35.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_bool_ops/test_xor_op/out.sql +0 -51
  709. bigframes-2.35.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_comparison_ops/test_eq_null_match/out.sql +0 -14
  710. bigframes-2.35.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_comparison_ops/test_eq_numeric/out.sql +0 -67
  711. bigframes-2.35.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_comparison_ops/test_ge_numeric/out.sql +0 -54
  712. bigframes-2.35.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_comparison_ops/test_gt_numeric/out.sql +0 -54
  713. bigframes-2.35.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_comparison_ops/test_is_in/out.sql +0 -35
  714. bigframes-2.35.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_comparison_ops/test_le_numeric/out.sql +0 -54
  715. bigframes-2.35.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_comparison_ops/test_lt_numeric/out.sql +0 -54
  716. bigframes-2.35.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_comparison_ops/test_maximum_op/out.sql +0 -14
  717. bigframes-2.35.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_comparison_ops/test_minimum_op/out.sql +0 -14
  718. bigframes-2.35.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_comparison_ops/test_ne_numeric/out.sql +0 -69
  719. bigframes-2.35.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_datetime_ops/test_add_timedelta/out.sql +0 -60
  720. bigframes-2.35.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_datetime_ops/test_date/out.sql +0 -13
  721. bigframes-2.35.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_datetime_ops/test_datetime_to_integer_label/out.sql +0 -38
  722. bigframes-2.35.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_datetime_ops/test_day/out.sql +0 -13
  723. bigframes-2.35.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_datetime_ops/test_dayofweek/out.sql +0 -19
  724. bigframes-2.35.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_datetime_ops/test_dayofyear/out.sql +0 -13
  725. bigframes-2.35.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_datetime_ops/test_floor_dt/out.sql +0 -36
  726. bigframes-2.35.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_datetime_ops/test_hour/out.sql +0 -13
  727. bigframes-2.35.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_datetime_ops/test_integer_label_to_datetime_fixed/out.sql +0 -16
  728. bigframes-2.35.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_datetime_ops/test_integer_label_to_datetime_month/out.sql +0 -50
  729. bigframes-2.35.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_datetime_ops/test_integer_label_to_datetime_quarter/out.sql +0 -54
  730. bigframes-2.35.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_datetime_ops/test_integer_label_to_datetime_week/out.sql +0 -18
  731. bigframes-2.35.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_datetime_ops/test_integer_label_to_datetime_year/out.sql +0 -14
  732. bigframes-2.35.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_datetime_ops/test_iso_day/out.sql +0 -13
  733. bigframes-2.35.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_datetime_ops/test_iso_week/out.sql +0 -13
  734. bigframes-2.35.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_datetime_ops/test_iso_year/out.sql +0 -13
  735. bigframes-2.35.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_datetime_ops/test_minute/out.sql +0 -13
  736. bigframes-2.35.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_datetime_ops/test_month/out.sql +0 -13
  737. bigframes-2.35.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_datetime_ops/test_normalize/out.sql +0 -13
  738. bigframes-2.35.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_datetime_ops/test_quarter/out.sql +0 -13
  739. bigframes-2.35.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_datetime_ops/test_second/out.sql +0 -13
  740. bigframes-2.35.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_datetime_ops/test_strftime/out.sql +0 -22
  741. bigframes-2.35.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_datetime_ops/test_sub_timedelta/out.sql +0 -82
  742. bigframes-2.35.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_datetime_ops/test_time/out.sql +0 -13
  743. bigframes-2.35.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_datetime_ops/test_to_datetime/out.sql +0 -19
  744. bigframes-2.35.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_datetime_ops/test_to_timestamp/out.sql +0 -24
  745. bigframes-2.35.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_datetime_ops/test_unix_micros/out.sql +0 -13
  746. bigframes-2.35.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_datetime_ops/test_unix_millis/out.sql +0 -13
  747. bigframes-2.35.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_datetime_ops/test_unix_seconds/out.sql +0 -13
  748. bigframes-2.35.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_datetime_ops/test_year/out.sql +0 -13
  749. bigframes-2.35.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_generic_ops/test_astype_bool/out.sql +0 -18
  750. bigframes-2.35.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_generic_ops/test_astype_float/out.sql +0 -17
  751. bigframes-2.35.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_generic_ops/test_astype_from_json/out.sql +0 -21
  752. bigframes-2.35.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_generic_ops/test_astype_int/out.sql +0 -33
  753. bigframes-2.35.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_generic_ops/test_astype_json/out.sql +0 -26
  754. bigframes-2.35.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_generic_ops/test_astype_string/out.sql +0 -18
  755. bigframes-2.35.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_generic_ops/test_astype_time_like/out.sql +0 -19
  756. bigframes-2.35.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_generic_ops/test_binary_remote_function_op/out.sql +0 -14
  757. bigframes-2.35.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_generic_ops/test_case_when_op/out.sql +0 -29
  758. bigframes-2.35.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_generic_ops/test_clip/out.sql +0 -15
  759. bigframes-2.35.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_generic_ops/test_coalesce/out.sql +0 -16
  760. bigframes-2.35.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_generic_ops/test_fillna/out.sql +0 -14
  761. bigframes-2.35.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_generic_ops/test_hash/out.sql +0 -13
  762. bigframes-2.35.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_generic_ops/test_invert/out.sql +0 -25
  763. bigframes-2.35.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_generic_ops/test_isnull/out.sql +0 -13
  764. bigframes-2.35.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_generic_ops/test_map/out.sql +0 -19
  765. bigframes-2.35.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_generic_ops/test_nary_remote_function_op/out.sql +0 -15
  766. bigframes-2.35.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_generic_ops/test_notnull/out.sql +0 -13
  767. bigframes-2.35.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_generic_ops/test_remote_function_op/out.sql +0 -19
  768. bigframes-2.35.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_generic_ops/test_row_key/out.sql +0 -70
  769. bigframes-2.35.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_generic_ops/test_sql_scalar_op/out.sql +0 -14
  770. bigframes-2.35.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_generic_ops/test_where/out.sql +0 -15
  771. bigframes-2.35.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_geo_ops/test_geo_area/out.sql +0 -13
  772. bigframes-2.35.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_geo_ops/test_geo_st_astext/out.sql +0 -13
  773. bigframes-2.35.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_geo_ops/test_geo_st_boundary/out.sql +0 -13
  774. bigframes-2.35.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_geo_ops/test_geo_st_buffer/out.sql +0 -13
  775. bigframes-2.35.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_geo_ops/test_geo_st_centroid/out.sql +0 -13
  776. bigframes-2.35.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_geo_ops/test_geo_st_convexhull/out.sql +0 -13
  777. bigframes-2.35.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_geo_ops/test_geo_st_difference/out.sql +0 -13
  778. bigframes-2.35.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_geo_ops/test_geo_st_distance/out.sql +0 -15
  779. bigframes-2.35.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_geo_ops/test_geo_st_geogfromtext/out.sql +0 -13
  780. bigframes-2.35.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_geo_ops/test_geo_st_geogpoint/out.sql +0 -14
  781. bigframes-2.35.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_geo_ops/test_geo_st_intersection/out.sql +0 -13
  782. bigframes-2.35.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_geo_ops/test_geo_st_isclosed/out.sql +0 -13
  783. bigframes-2.35.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_geo_ops/test_geo_st_length/out.sql +0 -13
  784. bigframes-2.35.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_geo_ops/test_geo_x/out.sql +0 -13
  785. bigframes-2.35.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_geo_ops/test_geo_y/out.sql +0 -13
  786. bigframes-2.35.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_json_ops/test_json_extract/out.sql +0 -13
  787. bigframes-2.35.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_json_ops/test_json_extract_array/out.sql +0 -13
  788. bigframes-2.35.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_json_ops/test_json_extract_string_array/out.sql +0 -13
  789. bigframes-2.35.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_json_ops/test_json_keys/out.sql +0 -15
  790. bigframes-2.35.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_json_ops/test_json_query/out.sql +0 -13
  791. bigframes-2.35.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_json_ops/test_json_query_array/out.sql +0 -13
  792. bigframes-2.35.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_json_ops/test_json_set/out.sql +0 -13
  793. bigframes-2.35.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_json_ops/test_json_value/out.sql +0 -13
  794. bigframes-2.35.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_json_ops/test_parse_json/out.sql +0 -13
  795. bigframes-2.35.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_json_ops/test_to_json/out.sql +0 -13
  796. bigframes-2.35.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_json_ops/test_to_json_string/out.sql +0 -13
  797. bigframes-2.35.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_numeric_ops/test_abs/out.sql +0 -13
  798. bigframes-2.35.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_numeric_ops/test_add_numeric/out.sql +0 -54
  799. bigframes-2.35.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_numeric_ops/test_add_string/out.sql +0 -13
  800. bigframes-2.35.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_numeric_ops/test_add_timedelta/out.sql +0 -60
  801. bigframes-2.35.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_numeric_ops/test_arccos/out.sql +0 -17
  802. bigframes-2.35.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_numeric_ops/test_arccosh/out.sql +0 -17
  803. bigframes-2.35.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_numeric_ops/test_arcsin/out.sql +0 -17
  804. bigframes-2.35.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_numeric_ops/test_arcsinh/out.sql +0 -13
  805. bigframes-2.35.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_numeric_ops/test_arctan/out.sql +0 -13
  806. bigframes-2.35.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_numeric_ops/test_arctan2/out.sql +0 -17
  807. bigframes-2.35.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_numeric_ops/test_arctanh/out.sql +0 -19
  808. bigframes-2.35.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_numeric_ops/test_ceil/out.sql +0 -13
  809. bigframes-2.35.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_numeric_ops/test_cos/out.sql +0 -13
  810. bigframes-2.35.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_numeric_ops/test_cosh/out.sql +0 -17
  811. bigframes-2.35.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_numeric_ops/test_cosine_distance/out.sql +0 -16
  812. bigframes-2.35.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_numeric_ops/test_div_numeric/out.sql +0 -122
  813. bigframes-2.35.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_numeric_ops/test_div_timedelta/out.sql +0 -21
  814. bigframes-2.35.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_numeric_ops/test_euclidean_distance/out.sql +0 -16
  815. bigframes-2.35.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_numeric_ops/test_exp/out.sql +0 -17
  816. bigframes-2.35.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_numeric_ops/test_expm1/out.sql +0 -13
  817. bigframes-2.35.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_numeric_ops/test_floor/out.sql +0 -13
  818. bigframes-2.35.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_numeric_ops/test_floordiv_timedelta/out.sql +0 -18
  819. bigframes-2.35.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_numeric_ops/test_ln/out.sql +0 -21
  820. bigframes-2.35.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_numeric_ops/test_log10/out.sql +0 -21
  821. bigframes-2.35.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_numeric_ops/test_log1p/out.sql +0 -21
  822. bigframes-2.35.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_numeric_ops/test_manhattan_distance/out.sql +0 -16
  823. bigframes-2.35.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_numeric_ops/test_mod_numeric/out.sql +0 -292
  824. bigframes-2.35.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_numeric_ops/test_mul_numeric/out.sql +0 -54
  825. bigframes-2.35.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_numeric_ops/test_mul_timedelta/out.sql +0 -43
  826. bigframes-2.35.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_numeric_ops/test_neg/out.sql +0 -15
  827. bigframes-2.35.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_numeric_ops/test_pos/out.sql +0 -13
  828. bigframes-2.35.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_numeric_ops/test_pow/out.sql +0 -329
  829. bigframes-2.35.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_numeric_ops/test_round/out.sql +0 -81
  830. bigframes-2.35.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_numeric_ops/test_sin/out.sql +0 -13
  831. bigframes-2.35.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_numeric_ops/test_sinh/out.sql +0 -17
  832. bigframes-2.35.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_numeric_ops/test_sqrt/out.sql +0 -13
  833. bigframes-2.35.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_numeric_ops/test_sub_numeric/out.sql +0 -54
  834. bigframes-2.35.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_numeric_ops/test_sub_timedelta/out.sql +0 -82
  835. bigframes-2.35.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_numeric_ops/test_tan/out.sql +0 -13
  836. bigframes-2.35.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_numeric_ops/test_tanh/out.sql +0 -13
  837. bigframes-2.35.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_numeric_ops/test_unsafe_pow_op/out.sql +0 -43
  838. bigframes-2.35.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_string_ops/test_add_string/out.sql +0 -13
  839. bigframes-2.35.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_string_ops/test_capitalize/out.sql +0 -13
  840. bigframes-2.35.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_string_ops/test_endswith/out.sql +0 -17
  841. bigframes-2.35.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_string_ops/test_isalnum/out.sql +0 -13
  842. bigframes-2.35.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_string_ops/test_isalpha/out.sql +0 -13
  843. bigframes-2.35.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_string_ops/test_isdecimal/out.sql +0 -13
  844. bigframes-2.35.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_string_ops/test_isdigit/out.sql +0 -16
  845. bigframes-2.35.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_string_ops/test_islower/out.sql +0 -13
  846. bigframes-2.35.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_string_ops/test_isnumeric/out.sql +0 -13
  847. bigframes-2.35.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_string_ops/test_isspace/out.sql +0 -13
  848. bigframes-2.35.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_string_ops/test_isupper/out.sql +0 -13
  849. bigframes-2.35.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_string_ops/test_len/out.sql +0 -13
  850. bigframes-2.35.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_string_ops/test_len_w_array/out.sql +0 -13
  851. bigframes-2.35.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_string_ops/test_lower/out.sql +0 -13
  852. bigframes-2.35.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_string_ops/test_lstrip/out.sql +0 -13
  853. bigframes-2.35.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_string_ops/test_regex_replace_str/out.sql +0 -13
  854. bigframes-2.35.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_string_ops/test_replace_str/out.sql +0 -13
  855. bigframes-2.35.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_string_ops/test_reverse/out.sql +0 -13
  856. bigframes-2.35.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_string_ops/test_rstrip/out.sql +0 -13
  857. bigframes-2.35.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_string_ops/test_startswith/out.sql +0 -17
  858. bigframes-2.35.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_string_ops/test_str_contains/out.sql +0 -13
  859. bigframes-2.35.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_string_ops/test_str_contains_regex/out.sql +0 -13
  860. bigframes-2.35.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_string_ops/test_str_extract/out.sql +0 -23
  861. bigframes-2.35.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_string_ops/test_str_find/out.sql +0 -19
  862. bigframes-2.35.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_string_ops/test_str_get/out.sql +0 -13
  863. bigframes-2.35.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_string_ops/test_str_pad/out.sql +0 -25
  864. bigframes-2.35.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_string_ops/test_str_repeat/out.sql +0 -13
  865. bigframes-2.35.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_string_ops/test_str_slice/out.sql +0 -13
  866. bigframes-2.35.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_string_ops/test_strconcat/out.sql +0 -13
  867. bigframes-2.35.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_string_ops/test_string_split/out.sql +0 -13
  868. bigframes-2.35.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_string_ops/test_strip/out.sql +0 -13
  869. bigframes-2.35.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_string_ops/test_upper/out.sql +0 -13
  870. bigframes-2.35.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_string_ops/test_zfill/out.sql +0 -17
  871. bigframes-2.35.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_struct_ops/test_struct_field/out.sql +0 -15
  872. bigframes-2.35.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_struct_ops/test_struct_op/out.sql +0 -21
  873. bigframes-2.35.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_timedelta_ops/test_timedelta_floor/out.sql +0 -13
  874. bigframes-2.35.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_timedelta_ops/test_to_timedelta/out.sql +0 -54
  875. bigframes-2.35.0/tests/unit/core/compile/sqlglot/expressions/test_datetime_ops.py +0 -366
  876. bigframes-2.35.0/tests/unit/core/compile/sqlglot/expressions/test_numeric_ops.py +0 -489
  877. bigframes-2.35.0/tests/unit/core/compile/sqlglot/expressions/test_string_ops.py +0 -332
  878. bigframes-2.35.0/tests/unit/core/compile/sqlglot/snapshots/test_compile_aggregate/test_compile_aggregate/out.sql +0 -27
  879. bigframes-2.35.0/tests/unit/core/compile/sqlglot/snapshots/test_compile_aggregate/test_compile_aggregate_wo_dropna/out.sql +0 -25
  880. bigframes-2.35.0/tests/unit/core/compile/sqlglot/snapshots/test_compile_concat/test_compile_concat/out.sql +0 -73
  881. bigframes-2.35.0/tests/unit/core/compile/sqlglot/snapshots/test_compile_concat/test_compile_concat_filter_sorted/out.sql +0 -119
  882. bigframes-2.35.0/tests/unit/core/compile/sqlglot/snapshots/test_compile_explode/test_compile_explode_dataframe/out.sql +0 -21
  883. bigframes-2.35.0/tests/unit/core/compile/sqlglot/snapshots/test_compile_explode/test_compile_explode_series/out.sql +0 -18
  884. bigframes-2.35.0/tests/unit/core/compile/sqlglot/snapshots/test_compile_filter/test_compile_filter/out.sql +0 -25
  885. bigframes-2.35.0/tests/unit/core/compile/sqlglot/snapshots/test_compile_geo/test_st_regionstats/out.sql +0 -36
  886. bigframes-2.35.0/tests/unit/core/compile/sqlglot/snapshots/test_compile_geo/test_st_regionstats_without_optional_args/out.sql +0 -30
  887. bigframes-2.35.0/tests/unit/core/compile/sqlglot/snapshots/test_compile_geo/test_st_simplify/out.sql +0 -15
  888. bigframes-2.35.0/tests/unit/core/compile/sqlglot/snapshots/test_compile_isin/test_compile_isin/out.sql +0 -41
  889. bigframes-2.35.0/tests/unit/core/compile/sqlglot/snapshots/test_compile_isin/test_compile_isin_not_nullable/out.sql +0 -34
  890. bigframes-2.35.0/tests/unit/core/compile/sqlglot/snapshots/test_compile_join/test_compile_join/out.sql +0 -32
  891. bigframes-2.35.0/tests/unit/core/compile/sqlglot/snapshots/test_compile_join/test_compile_join_w_on/bool_col/out.sql +0 -33
  892. bigframes-2.35.0/tests/unit/core/compile/sqlglot/snapshots/test_compile_join/test_compile_join_w_on/float64_col/out.sql +0 -33
  893. bigframes-2.35.0/tests/unit/core/compile/sqlglot/snapshots/test_compile_join/test_compile_join_w_on/int64_col/out.sql +0 -33
  894. bigframes-2.35.0/tests/unit/core/compile/sqlglot/snapshots/test_compile_join/test_compile_join_w_on/numeric_col/out.sql +0 -33
  895. bigframes-2.35.0/tests/unit/core/compile/sqlglot/snapshots/test_compile_join/test_compile_join_w_on/string_col/out.sql +0 -33
  896. bigframes-2.35.0/tests/unit/core/compile/sqlglot/snapshots/test_compile_join/test_compile_join_w_on/time_col/out.sql +0 -33
  897. bigframes-2.35.0/tests/unit/core/compile/sqlglot/snapshots/test_compile_random_sample/test_compile_random_sample/out.sql +0 -184
  898. bigframes-2.35.0/tests/unit/core/compile/sqlglot/snapshots/test_compile_readtable/test_compile_readtable/out.sql +0 -37
  899. bigframes-2.35.0/tests/unit/core/compile/sqlglot/snapshots/test_compile_readtable/test_compile_readtable_w_columns_filters/out.sql +0 -14
  900. bigframes-2.35.0/tests/unit/core/compile/sqlglot/snapshots/test_compile_readtable/test_compile_readtable_w_json_types/out.sql +0 -10
  901. bigframes-2.35.0/tests/unit/core/compile/sqlglot/snapshots/test_compile_readtable/test_compile_readtable_w_limit/out.sql +0 -13
  902. bigframes-2.35.0/tests/unit/core/compile/sqlglot/snapshots/test_compile_readtable/test_compile_readtable_w_nested_structs_types/out.sql +0 -11
  903. bigframes-2.35.0/tests/unit/core/compile/sqlglot/snapshots/test_compile_readtable/test_compile_readtable_w_ordering/out.sql +0 -12
  904. bigframes-2.35.0/tests/unit/core/compile/sqlglot/snapshots/test_compile_readtable/test_compile_readtable_w_repeated_types/out.sql +0 -23
  905. bigframes-2.35.0/tests/unit/core/compile/sqlglot/snapshots/test_compile_readtable/test_compile_readtable_w_system_time/out.sql +0 -36
  906. bigframes-2.35.0/tests/unit/core/compile/sqlglot/snapshots/test_compile_window/test_compile_window_w_groupby_rolling/out.sql +0 -76
  907. bigframes-2.35.0/tests/unit/core/compile/sqlglot/snapshots/test_compile_window/test_compile_window_w_range_rolling/out.sql +0 -33
  908. bigframes-2.35.0/tests/unit/core/compile/sqlglot/snapshots/test_compile_window/test_compile_window_w_skips_nulls_op/out.sql +0 -27
  909. bigframes-2.35.0/tests/unit/core/compile/sqlglot/snapshots/test_compile_window/test_compile_window_wo_skips_nulls_op/out.sql +0 -21
  910. bigframes-2.35.0/tests/unit/core/compile/sqlglot/test_compile_concat.py +0 -49
  911. bigframes-2.35.0/tests/unit/core/compile/sqlglot/test_compile_readtable.py +0 -81
  912. bigframes-2.35.0/tests/unit/core/compile/sqlglot/test_scalar_compiler.py +0 -226
  913. bigframes-2.35.0/tests/unit/core/rewrite/conftest.py +0 -83
  914. bigframes-2.35.0/tests/unit/core/rewrite/test_identifiers.py +0 -153
  915. bigframes-2.35.0/tests/unit/core/test_groupby.py +0 -264
  916. bigframes-2.35.0/tests/unit/display/test_anywidget.py +0 -181
  917. bigframes-2.35.0/tests/unit/functions/test_remote_function_utils.py +0 -529
  918. bigframes-2.35.0/tests/unit/operations/__init__.py +0 -13
  919. bigframes-2.35.0/tests/unit/session/test_read_gbq_table.py +0 -188
  920. bigframes-2.35.0/tests/unit/session/test_session.py +0 -560
  921. bigframes-2.35.0/tests/unit/test_col.py +0 -160
  922. bigframes-2.35.0/tests/unit/test_dataframe_polars.py +0 -4479
  923. bigframes-2.35.0/tests/unit/test_planner.py +0 -117
  924. bigframes-2.35.0/tests/unit/test_series_polars.py +0 -5141
  925. bigframes-2.35.0/third_party/bigframes_vendored/ibis/expr/operations/numeric.py +0 -376
  926. bigframes-2.35.0/third_party/bigframes_vendored/pandas/core/computation/align.py +0 -226
  927. bigframes-2.35.0/third_party/bigframes_vendored/pandas/core/computation/eval.py +0 -367
  928. bigframes-2.35.0/third_party/bigframes_vendored/pandas/core/config_init.py +0 -156
  929. bigframes-2.35.0/third_party/bigframes_vendored/pandas/core/frame.py +0 -7509
  930. bigframes-2.35.0/third_party/bigframes_vendored/pandas/core/generic.py +0 -1268
  931. bigframes-2.35.0/third_party/bigframes_vendored/pandas/core/indexes/accessor.py +0 -521
  932. bigframes-2.35.0/third_party/bigframes_vendored/pandas/core/series.py +0 -6079
  933. bigframes-2.35.0/third_party/bigframes_vendored/sklearn/metrics/_classification.py +0 -257
  934. bigframes-2.35.0/third_party/bigframes_vendored/sklearn/preprocessing/_encoder.py +0 -88
  935. bigframes-2.35.0/third_party/bigframes_vendored/sqlglot/generator.py +0 -5824
  936. bigframes-2.35.0/third_party/bigframes_vendored/version.py +0 -19
  937. {bigframes-2.35.0 → bigframes-2.37.0}/LICENSE +0 -0
  938. {bigframes-2.35.0 → bigframes-2.37.0}/MANIFEST.in +0 -0
  939. {bigframes-2.35.0 → bigframes-2.37.0}/bigframes/__init__.py +0 -0
  940. {bigframes-2.35.0 → bigframes-2.37.0}/bigframes/_config/__init__.py +0 -0
  941. {bigframes-2.35.0 → bigframes-2.37.0}/bigframes/_config/display_options.py +0 -0
  942. {bigframes-2.35.0 → bigframes-2.37.0}/bigframes/_config/global_options.py +0 -0
  943. {bigframes-2.35.0 → bigframes-2.37.0}/bigframes/_importing.py +0 -0
  944. {bigframes-2.35.0 → bigframes-2.37.0}/bigframes/_magics.py +0 -0
  945. {bigframes-2.35.0 → bigframes-2.37.0}/bigframes/_tools/__init__.py +0 -0
  946. {bigframes-2.35.0 → bigframes-2.37.0}/bigframes/_tools/strings.py +0 -0
  947. {bigframes-2.35.0 → bigframes-2.37.0}/bigframes/bigquery/__init__.py +0 -0
  948. {bigframes-2.35.0 → bigframes-2.37.0}/bigframes/bigquery/_operations/__init__.py +0 -0
  949. {bigframes-2.35.0 → bigframes-2.37.0}/bigframes/bigquery/_operations/approx_agg.py +0 -0
  950. {bigframes-2.35.0 → bigframes-2.37.0}/bigframes/bigquery/_operations/array.py +0 -0
  951. {bigframes-2.35.0 → bigframes-2.37.0}/bigframes/bigquery/_operations/datetime.py +0 -0
  952. {bigframes-2.35.0 → bigframes-2.37.0}/bigframes/bigquery/_operations/geo.py +0 -0
  953. {bigframes-2.35.0 → bigframes-2.37.0}/bigframes/bigquery/_operations/io.py +0 -0
  954. {bigframes-2.35.0 → bigframes-2.37.0}/bigframes/bigquery/_operations/json.py +0 -0
  955. {bigframes-2.35.0 → bigframes-2.37.0}/bigframes/bigquery/_operations/ml.py +0 -0
  956. {bigframes-2.35.0 → bigframes-2.37.0}/bigframes/bigquery/_operations/obj.py +0 -0
  957. {bigframes-2.35.0 → bigframes-2.37.0}/bigframes/bigquery/_operations/search.py +0 -0
  958. {bigframes-2.35.0 → bigframes-2.37.0}/bigframes/bigquery/_operations/struct.py +0 -0
  959. {bigframes-2.35.0 → bigframes-2.37.0}/bigframes/bigquery/_operations/table.py +0 -0
  960. {bigframes-2.35.0 → bigframes-2.37.0}/bigframes/bigquery/_operations/utils.py +0 -0
  961. {bigframes-2.35.0 → bigframes-2.37.0}/bigframes/bigquery/ml.py +0 -0
  962. {bigframes-2.35.0 → bigframes-2.37.0}/bigframes/bigquery/obj.py +0 -0
  963. {bigframes-2.35.0 → bigframes-2.37.0}/bigframes/blob/_functions.py +0 -0
  964. {bigframes-2.35.0 → bigframes-2.37.0}/bigframes/clients.py +0 -0
  965. {bigframes-2.35.0 → bigframes-2.37.0}/bigframes/constants.py +0 -0
  966. {bigframes-2.35.0 → bigframes-2.37.0}/bigframes/core/__init__.py +0 -0
  967. {bigframes-2.35.0 → bigframes-2.37.0}/bigframes/core/agg_expressions.py +0 -0
  968. {bigframes-2.35.0 → bigframes-2.37.0}/bigframes/core/backports.py +0 -0
  969. {bigframes-2.35.0 → bigframes-2.37.0}/bigframes/core/bigframe_node.py +0 -0
  970. {bigframes-2.35.0 → bigframes-2.37.0}/bigframes/core/compile/__init__.py +0 -0
  971. {bigframes-2.35.0 → bigframes-2.37.0}/bigframes/core/compile/api.py +0 -0
  972. {bigframes-2.35.0 → bigframes-2.37.0}/bigframes/core/compile/concat.py +0 -0
  973. {bigframes-2.35.0 → bigframes-2.37.0}/bigframes/core/compile/configs.py +0 -0
  974. {bigframes-2.35.0 → bigframes-2.37.0}/bigframes/core/compile/constants.py +0 -0
  975. {bigframes-2.35.0 → bigframes-2.37.0}/bigframes/core/compile/explode.py +0 -0
  976. {bigframes-2.35.0 → bigframes-2.37.0}/bigframes/core/compile/ibis_compiler/__init__.py +0 -0
  977. {bigframes-2.35.0 → bigframes-2.37.0}/bigframes/core/compile/ibis_compiler/aggregate_compiler.py +0 -0
  978. {bigframes-2.35.0 → bigframes-2.37.0}/bigframes/core/compile/ibis_compiler/default_ordering.py +0 -0
  979. {bigframes-2.35.0 → bigframes-2.37.0}/bigframes/core/compile/ibis_compiler/operations/__init__.py +0 -0
  980. {bigframes-2.35.0 → bigframes-2.37.0}/bigframes/core/compile/ibis_compiler/operations/generic_ops.py +0 -0
  981. {bigframes-2.35.0 → bigframes-2.37.0}/bigframes/core/compile/ibis_compiler/operations/geo_ops.py +0 -0
  982. {bigframes-2.35.0 → bigframes-2.37.0}/bigframes/core/compile/ibis_compiler/scalar_op_compiler.py +0 -0
  983. {bigframes-2.35.0 → bigframes-2.37.0}/bigframes/core/compile/ibis_types.py +0 -0
  984. {bigframes-2.35.0 → bigframes-2.37.0}/bigframes/core/compile/polars/__init__.py +0 -0
  985. {bigframes-2.35.0 → bigframes-2.37.0}/bigframes/core/compile/polars/compiler.py +0 -0
  986. {bigframes-2.35.0 → bigframes-2.37.0}/bigframes/core/compile/polars/operations/__init__.py +0 -0
  987. {bigframes-2.35.0 → bigframes-2.37.0}/bigframes/core/compile/polars/operations/generic_ops.py +0 -0
  988. {bigframes-2.35.0 → bigframes-2.37.0}/bigframes/core/compile/polars/operations/numeric_ops.py +0 -0
  989. {bigframes-2.35.0 → bigframes-2.37.0}/bigframes/core/compile/polars/operations/struct_ops.py +0 -0
  990. {bigframes-2.35.0 → bigframes-2.37.0}/bigframes/core/compile/schema_translator.py +0 -0
  991. {bigframes-2.35.0 → bigframes-2.37.0}/bigframes/core/compile/sqlglot/__init__.py +0 -0
  992. {bigframes-2.35.0 → bigframes-2.37.0}/bigframes/core/compile/sqlglot/aggregations/__init__.py +0 -0
  993. {bigframes-2.35.0 → bigframes-2.37.0}/bigframes/core/compile/sqlglot/aggregations/op_registration.py +0 -0
  994. {bigframes-2.35.0 → bigframes-2.37.0}/bigframes/core/compile/sqlglot/aggregations/ordered_unary_compiler.py +0 -0
  995. {bigframes-2.35.0 → bigframes-2.37.0}/bigframes/core/compile/sqlglot/expressions/__init__.py +0 -0
  996. {bigframes-2.35.0 → bigframes-2.37.0}/bigframes/core/compile/sqlglot/expressions/constants.py +0 -0
  997. {bigframes-2.35.0 → bigframes-2.37.0}/bigframes/core/compile/sqlglot/expressions/typed_expr.py +0 -0
  998. {bigframes-2.35.0 → bigframes-2.37.0}/bigframes/core/compile/sqlglot/sqlglot_types.py +0 -0
  999. {bigframes-2.35.0 → bigframes-2.37.0}/bigframes/core/convert.py +0 -0
  1000. {bigframes-2.35.0 → bigframes-2.37.0}/bigframes/core/eval.py +0 -0
  1001. {bigframes-2.35.0 → bigframes-2.37.0}/bigframes/core/events.py +0 -0
  1002. {bigframes-2.35.0 → bigframes-2.37.0}/bigframes/core/explode.py +0 -0
  1003. {bigframes-2.35.0 → bigframes-2.37.0}/bigframes/core/expression.py +0 -0
  1004. {bigframes-2.35.0 → bigframes-2.37.0}/bigframes/core/field.py +0 -0
  1005. {bigframes-2.35.0 → bigframes-2.37.0}/bigframes/core/global_session.py +0 -0
  1006. {bigframes-2.35.0 → bigframes-2.37.0}/bigframes/core/graphs.py +0 -0
  1007. {bigframes-2.35.0 → bigframes-2.37.0}/bigframes/core/groupby/__init__.py +0 -0
  1008. {bigframes-2.35.0 → bigframes-2.37.0}/bigframes/core/groupby/aggs.py +0 -0
  1009. {bigframes-2.35.0 → bigframes-2.37.0}/bigframes/core/groupby/group_by.py +0 -0
  1010. {bigframes-2.35.0 → bigframes-2.37.0}/bigframes/core/guid.py +0 -0
  1011. {bigframes-2.35.0 → bigframes-2.37.0}/bigframes/core/identifiers.py +0 -0
  1012. {bigframes-2.35.0 → bigframes-2.37.0}/bigframes/core/indexes/__init__.py +0 -0
  1013. {bigframes-2.35.0 → bigframes-2.37.0}/bigframes/core/interchange.py +0 -0
  1014. {bigframes-2.35.0 → bigframes-2.37.0}/bigframes/core/join_def.py +0 -0
  1015. {bigframes-2.35.0 → bigframes-2.37.0}/bigframes/core/local_data.py +0 -0
  1016. {bigframes-2.35.0 → bigframes-2.37.0}/bigframes/core/logging/__init__.py +0 -0
  1017. {bigframes-2.35.0 → bigframes-2.37.0}/bigframes/core/logging/data_types.py +0 -0
  1018. {bigframes-2.35.0 → bigframes-2.37.0}/bigframes/core/logging/log_adapter.py +0 -0
  1019. {bigframes-2.35.0 → bigframes-2.37.0}/bigframes/core/ordered_sets.py +0 -0
  1020. {bigframes-2.35.0 → bigframes-2.37.0}/bigframes/core/ordering.py +0 -0
  1021. {bigframes-2.35.0 → bigframes-2.37.0}/bigframes/core/pruning.py +0 -0
  1022. {bigframes-2.35.0 → bigframes-2.37.0}/bigframes/core/pyarrow_utils.py +0 -0
  1023. {bigframes-2.35.0 → bigframes-2.37.0}/bigframes/core/pyformat.py +0 -0
  1024. {bigframes-2.35.0 → bigframes-2.37.0}/bigframes/core/reshape/__init__.py +0 -0
  1025. {bigframes-2.35.0 → bigframes-2.37.0}/bigframes/core/reshape/api.py +0 -0
  1026. {bigframes-2.35.0 → bigframes-2.37.0}/bigframes/core/reshape/concat.py +0 -0
  1027. {bigframes-2.35.0 → bigframes-2.37.0}/bigframes/core/reshape/encoding.py +0 -0
  1028. {bigframes-2.35.0 → bigframes-2.37.0}/bigframes/core/reshape/merge.py +0 -0
  1029. {bigframes-2.35.0 → bigframes-2.37.0}/bigframes/core/reshape/pivot.py +0 -0
  1030. {bigframes-2.35.0 → bigframes-2.37.0}/bigframes/core/reshape/tile.py +0 -0
  1031. {bigframes-2.35.0 → bigframes-2.37.0}/bigframes/core/rewrite/fold_row_count.py +0 -0
  1032. {bigframes-2.35.0 → bigframes-2.37.0}/bigframes/core/rewrite/implicit_align.py +0 -0
  1033. {bigframes-2.35.0 → bigframes-2.37.0}/bigframes/core/rewrite/legacy_align.py +0 -0
  1034. {bigframes-2.35.0 → bigframes-2.37.0}/bigframes/core/rewrite/op_lowering.py +0 -0
  1035. {bigframes-2.35.0 → bigframes-2.37.0}/bigframes/core/rewrite/order.py +0 -0
  1036. {bigframes-2.35.0 → bigframes-2.37.0}/bigframes/core/rewrite/pruning.py +0 -0
  1037. {bigframes-2.35.0 → bigframes-2.37.0}/bigframes/core/rewrite/scan_reduction.py +0 -0
  1038. {bigframes-2.35.0 → bigframes-2.37.0}/bigframes/core/rewrite/schema_binding.py +0 -0
  1039. {bigframes-2.35.0 → bigframes-2.37.0}/bigframes/core/rewrite/slices.py +0 -0
  1040. {bigframes-2.35.0 → bigframes-2.37.0}/bigframes/core/scalar.py +0 -0
  1041. {bigframes-2.35.0 → bigframes-2.37.0}/bigframes/core/sequences.py +0 -0
  1042. {bigframes-2.35.0 → bigframes-2.37.0}/bigframes/core/slices.py +0 -0
  1043. {bigframes-2.35.0 → bigframes-2.37.0}/bigframes/core/sql/io.py +0 -0
  1044. {bigframes-2.35.0 → bigframes-2.37.0}/bigframes/core/sql/literals.py +0 -0
  1045. {bigframes-2.35.0 → bigframes-2.37.0}/bigframes/core/sql/table.py +0 -0
  1046. {bigframes-2.35.0 → bigframes-2.37.0}/bigframes/core/tools/__init__.py +0 -0
  1047. {bigframes-2.35.0 → bigframes-2.37.0}/bigframes/core/tools/bigquery_schema.py +0 -0
  1048. {bigframes-2.35.0 → bigframes-2.37.0}/bigframes/core/tools/datetimes.py +0 -0
  1049. {bigframes-2.35.0 → bigframes-2.37.0}/bigframes/core/tree_properties.py +0 -0
  1050. {bigframes-2.35.0 → bigframes-2.37.0}/bigframes/core/validations.py +0 -0
  1051. {bigframes-2.35.0 → bigframes-2.37.0}/bigframes/core/window/__init__.py +0 -0
  1052. {bigframes-2.35.0 → bigframes-2.37.0}/bigframes/core/window/ordering.py +0 -0
  1053. {bigframes-2.35.0 → bigframes-2.37.0}/bigframes/core/window_spec.py +0 -0
  1054. {bigframes-2.35.0 → bigframes-2.37.0}/bigframes/display/__init__.py +0 -0
  1055. {bigframes-2.35.0 → bigframes-2.37.0}/bigframes/display/anywidget.py +0 -0
  1056. {bigframes-2.35.0 → bigframes-2.37.0}/bigframes/display/plaintext.py +0 -0
  1057. {bigframes-2.35.0 → bigframes-2.37.0}/bigframes/display/table_widget.css +0 -0
  1058. {bigframes-2.35.0 → bigframes-2.37.0}/bigframes/display/table_widget.js +0 -0
  1059. {bigframes-2.35.0 → bigframes-2.37.0}/bigframes/enums.py +0 -0
  1060. {bigframes-2.35.0 → bigframes-2.37.0}/bigframes/exceptions.py +0 -0
  1061. {bigframes-2.35.0 → bigframes-2.37.0}/bigframes/features.py +0 -0
  1062. {bigframes-2.35.0 → bigframes-2.37.0}/bigframes/formatting_helpers.py +0 -0
  1063. {bigframes-2.35.0 → bigframes-2.37.0}/bigframes/functions/__init__.py +0 -0
  1064. {bigframes-2.35.0 → bigframes-2.37.0}/bigframes/functions/_utils.py +0 -0
  1065. {bigframes-2.35.0 → bigframes-2.37.0}/bigframes/functions/function.py +0 -0
  1066. {bigframes-2.35.0 → bigframes-2.37.0}/bigframes/functions/function_typing.py +0 -0
  1067. {bigframes-2.35.0 → bigframes-2.37.0}/bigframes/functions/udf_def.py +0 -0
  1068. {bigframes-2.35.0 → bigframes-2.37.0}/bigframes/geopandas/__init__.py +0 -0
  1069. {bigframes-2.35.0 → bigframes-2.37.0}/bigframes/ml/__init__.py +0 -0
  1070. {bigframes-2.35.0 → bigframes-2.37.0}/bigframes/ml/core.py +0 -0
  1071. {bigframes-2.35.0 → bigframes-2.37.0}/bigframes/ml/forecasting.py +0 -0
  1072. {bigframes-2.35.0 → bigframes-2.37.0}/bigframes/ml/globals.py +0 -0
  1073. {bigframes-2.35.0 → bigframes-2.37.0}/bigframes/ml/linear_model.py +0 -0
  1074. {bigframes-2.35.0 → bigframes-2.37.0}/bigframes/ml/loader.py +0 -0
  1075. {bigframes-2.35.0 → bigframes-2.37.0}/bigframes/ml/metrics/__init__.py +0 -0
  1076. {bigframes-2.35.0 → bigframes-2.37.0}/bigframes/ml/metrics/pairwise.py +0 -0
  1077. {bigframes-2.35.0 → bigframes-2.37.0}/bigframes/ml/pipeline.py +0 -0
  1078. {bigframes-2.35.0 → bigframes-2.37.0}/bigframes/ml/remote.py +0 -0
  1079. {bigframes-2.35.0 → bigframes-2.37.0}/bigframes/ml/utils.py +0 -0
  1080. {bigframes-2.35.0 → bigframes-2.37.0}/bigframes/operations/__init__.py +0 -0
  1081. {bigframes-2.35.0 → bigframes-2.37.0}/bigframes/operations/_matplotlib/__init__.py +0 -0
  1082. {bigframes-2.35.0 → bigframes-2.37.0}/bigframes/operations/_matplotlib/core.py +0 -0
  1083. {bigframes-2.35.0 → bigframes-2.37.0}/bigframes/operations/_matplotlib/hist.py +0 -0
  1084. {bigframes-2.35.0 → bigframes-2.37.0}/bigframes/operations/_op_converters.py +0 -0
  1085. {bigframes-2.35.0 → bigframes-2.37.0}/bigframes/operations/aggregations.py +0 -0
  1086. {bigframes-2.35.0 → bigframes-2.37.0}/bigframes/operations/ai.py +0 -0
  1087. {bigframes-2.35.0 → bigframes-2.37.0}/bigframes/operations/ai_ops.py +0 -0
  1088. {bigframes-2.35.0 → bigframes-2.37.0}/bigframes/operations/array_ops.py +0 -0
  1089. {bigframes-2.35.0 → bigframes-2.37.0}/bigframes/operations/base_ops.py +0 -0
  1090. {bigframes-2.35.0 → bigframes-2.37.0}/bigframes/operations/blob_ops.py +0 -0
  1091. {bigframes-2.35.0 → bigframes-2.37.0}/bigframes/operations/bool_ops.py +0 -0
  1092. {bigframes-2.35.0 → bigframes-2.37.0}/bigframes/operations/comparison_ops.py +0 -0
  1093. {bigframes-2.35.0 → bigframes-2.37.0}/bigframes/operations/date_ops.py +0 -0
  1094. {bigframes-2.35.0 → bigframes-2.37.0}/bigframes/operations/distance_ops.py +0 -0
  1095. {bigframes-2.35.0 → bigframes-2.37.0}/bigframes/operations/frequency_ops.py +0 -0
  1096. {bigframes-2.35.0 → bigframes-2.37.0}/bigframes/operations/generic_ops.py +0 -0
  1097. {bigframes-2.35.0 → bigframes-2.37.0}/bigframes/operations/geo_ops.py +0 -0
  1098. {bigframes-2.35.0 → bigframes-2.37.0}/bigframes/operations/json_ops.py +0 -0
  1099. {bigframes-2.35.0 → bigframes-2.37.0}/bigframes/operations/numeric_ops.py +0 -0
  1100. {bigframes-2.35.0 → bigframes-2.37.0}/bigframes/operations/numpy_op_maps.py +0 -0
  1101. {bigframes-2.35.0 → bigframes-2.37.0}/bigframes/operations/output_schemas.py +0 -0
  1102. {bigframes-2.35.0 → bigframes-2.37.0}/bigframes/operations/python_op_maps.py +0 -0
  1103. {bigframes-2.35.0 → bigframes-2.37.0}/bigframes/operations/remote_function_ops.py +0 -0
  1104. {bigframes-2.35.0 → bigframes-2.37.0}/bigframes/operations/semantics.py +0 -0
  1105. {bigframes-2.35.0 → bigframes-2.37.0}/bigframes/operations/string_ops.py +0 -0
  1106. {bigframes-2.35.0 → bigframes-2.37.0}/bigframes/operations/struct_ops.py +0 -0
  1107. {bigframes-2.35.0 → bigframes-2.37.0}/bigframes/operations/time_ops.py +0 -0
  1108. {bigframes-2.35.0 → bigframes-2.37.0}/bigframes/operations/timedelta_ops.py +0 -0
  1109. {bigframes-2.35.0 → bigframes-2.37.0}/bigframes/operations/type.py +0 -0
  1110. {bigframes-2.35.0 → bigframes-2.37.0}/bigframes/pandas/api/__init__.py +0 -0
  1111. {bigframes-2.35.0 → bigframes-2.37.0}/bigframes/pandas/api/typing.py +0 -0
  1112. {bigframes-2.35.0 → bigframes-2.37.0}/bigframes/pandas/core/__init__.py +0 -0
  1113. {bigframes-2.35.0 → bigframes-2.37.0}/bigframes/pandas/core/api.py +0 -0
  1114. {bigframes-2.35.0 → bigframes-2.37.0}/bigframes/pandas/core/methods/__init__.py +0 -0
  1115. {bigframes-2.35.0 → bigframes-2.37.0}/bigframes/pandas/core/methods/describe.py +0 -0
  1116. {bigframes-2.35.0 → bigframes-2.37.0}/bigframes/pandas/core/tools/__init__.py +0 -0
  1117. {bigframes-2.35.0 → bigframes-2.37.0}/bigframes/pandas/core/tools/timedeltas.py +0 -0
  1118. {bigframes-2.35.0 → bigframes-2.37.0}/bigframes/pandas/io/__init__.py +0 -0
  1119. {bigframes-2.35.0 → bigframes-2.37.0}/bigframes/py.typed +0 -0
  1120. {bigframes-2.35.0 → bigframes-2.37.0}/bigframes/session/_io/__init__.py +0 -0
  1121. {bigframes-2.35.0 → bigframes-2.37.0}/bigframes/session/_io/bigquery/read_gbq_query.py +0 -0
  1122. {bigframes-2.35.0 → bigframes-2.37.0}/bigframes/session/_io/pandas.py +0 -0
  1123. {bigframes-2.35.0 → bigframes-2.37.0}/bigframes/session/anonymous_dataset.py +0 -0
  1124. {bigframes-2.35.0 → bigframes-2.37.0}/bigframes/session/clients.py +0 -0
  1125. {bigframes-2.35.0 → bigframes-2.37.0}/bigframes/session/direct_gbq_execution.py +0 -0
  1126. {bigframes-2.35.0 → bigframes-2.37.0}/bigframes/session/environment.py +0 -0
  1127. {bigframes-2.35.0 → bigframes-2.37.0}/bigframes/session/execution_spec.py +0 -0
  1128. {bigframes-2.35.0 → bigframes-2.37.0}/bigframes/session/executor.py +0 -0
  1129. {bigframes-2.35.0 → bigframes-2.37.0}/bigframes/session/local_scan_executor.py +0 -0
  1130. {bigframes-2.35.0 → bigframes-2.37.0}/bigframes/session/metrics.py +0 -0
  1131. {bigframes-2.35.0 → bigframes-2.37.0}/bigframes/session/planner.py +0 -0
  1132. {bigframes-2.35.0 → bigframes-2.37.0}/bigframes/session/semi_executor.py +0 -0
  1133. {bigframes-2.35.0 → bigframes-2.37.0}/bigframes/session/temporary_storage.py +0 -0
  1134. {bigframes-2.35.0 → bigframes-2.37.0}/bigframes/session/time.py +0 -0
  1135. {bigframes-2.35.0 → bigframes-2.37.0}/bigframes/session/validation.py +0 -0
  1136. {bigframes-2.35.0 → bigframes-2.37.0}/bigframes/streaming/__init__.py +0 -0
  1137. {bigframes-2.35.0 → bigframes-2.37.0}/bigframes/testing/compiler_session.py +0 -0
  1138. {bigframes-2.35.0 → bigframes-2.37.0}/bigframes/testing/engine_utils.py +0 -0
  1139. {bigframes-2.35.0 → bigframes-2.37.0}/bigframes/testing/mocks.py +0 -0
  1140. {bigframes-2.35.0 → bigframes-2.37.0}/bigframes/testing/polars_session.py +0 -0
  1141. {bigframes-2.35.0 → bigframes-2.37.0}/bigframes.egg-info/dependency_links.txt +0 -0
  1142. {bigframes-2.35.0 → bigframes-2.37.0}/bigframes.egg-info/not-zip-safe +0 -0
  1143. {bigframes-2.35.0 → bigframes-2.37.0}/bigframes.egg-info/top_level.txt +0 -0
  1144. {bigframes-2.35.0 → bigframes-2.37.0}/pyproject.toml +0 -0
  1145. {bigframes-2.35.0 → bigframes-2.37.0}/setup.cfg +0 -0
  1146. {bigframes-2.35.0 → bigframes-2.37.0}/tests/__init__.py +0 -0
  1147. {bigframes-2.35.0 → bigframes-2.37.0}/tests/benchmark/.gitignore +0 -0
  1148. {bigframes-2.35.0 → bigframes-2.37.0}/tests/benchmark/README.md +0 -0
  1149. {bigframes-2.35.0 → bigframes-2.37.0}/tests/benchmark/__init__.py +0 -0
  1150. {bigframes-2.35.0 → bigframes-2.37.0}/tests/benchmark/db_benchmark/groupby/config.jsonl +0 -0
  1151. {bigframes-2.35.0 → bigframes-2.37.0}/tests/benchmark/db_benchmark/groupby/q1.py +0 -0
  1152. {bigframes-2.35.0 → bigframes-2.37.0}/tests/benchmark/db_benchmark/groupby/q10.py +0 -0
  1153. {bigframes-2.35.0 → bigframes-2.37.0}/tests/benchmark/db_benchmark/groupby/q2.py +0 -0
  1154. {bigframes-2.35.0 → bigframes-2.37.0}/tests/benchmark/db_benchmark/groupby/q3.py +0 -0
  1155. {bigframes-2.35.0 → bigframes-2.37.0}/tests/benchmark/db_benchmark/groupby/q4.py +0 -0
  1156. {bigframes-2.35.0 → bigframes-2.37.0}/tests/benchmark/db_benchmark/groupby/q5.py +0 -0
  1157. {bigframes-2.35.0 → bigframes-2.37.0}/tests/benchmark/db_benchmark/groupby/q6.py +0 -0
  1158. {bigframes-2.35.0 → bigframes-2.37.0}/tests/benchmark/db_benchmark/groupby/q7.py +0 -0
  1159. {bigframes-2.35.0 → bigframes-2.37.0}/tests/benchmark/db_benchmark/groupby/q8.py +0 -0
  1160. {bigframes-2.35.0 → bigframes-2.37.0}/tests/benchmark/db_benchmark/join/config.jsonl +0 -0
  1161. {bigframes-2.35.0 → bigframes-2.37.0}/tests/benchmark/db_benchmark/join/q1.py +0 -0
  1162. {bigframes-2.35.0 → bigframes-2.37.0}/tests/benchmark/db_benchmark/join/q2.py +0 -0
  1163. {bigframes-2.35.0 → bigframes-2.37.0}/tests/benchmark/db_benchmark/join/q3.py +0 -0
  1164. {bigframes-2.35.0 → bigframes-2.37.0}/tests/benchmark/db_benchmark/join/q4.py +0 -0
  1165. {bigframes-2.35.0 → bigframes-2.37.0}/tests/benchmark/db_benchmark/join/q5.py +0 -0
  1166. {bigframes-2.35.0 → bigframes-2.37.0}/tests/benchmark/db_benchmark/sort/config.jsonl +0 -0
  1167. {bigframes-2.35.0 → bigframes-2.37.0}/tests/benchmark/db_benchmark/sort/q1.py +0 -0
  1168. {bigframes-2.35.0 → bigframes-2.37.0}/tests/benchmark/read_gbq_colab/aggregate_output.py +0 -0
  1169. {bigframes-2.35.0 → bigframes-2.37.0}/tests/benchmark/read_gbq_colab/config.jsonl +0 -0
  1170. {bigframes-2.35.0 → bigframes-2.37.0}/tests/benchmark/read_gbq_colab/dry_run.py +0 -0
  1171. {bigframes-2.35.0 → bigframes-2.37.0}/tests/benchmark/read_gbq_colab/filter_output.py +0 -0
  1172. {bigframes-2.35.0 → bigframes-2.37.0}/tests/benchmark/read_gbq_colab/first_page.py +0 -0
  1173. {bigframes-2.35.0 → bigframes-2.37.0}/tests/benchmark/read_gbq_colab/last_page.py +0 -0
  1174. {bigframes-2.35.0 → bigframes-2.37.0}/tests/benchmark/read_gbq_colab/sort_output.py +0 -0
  1175. {bigframes-2.35.0 → bigframes-2.37.0}/tests/benchmark/tpch/config.jsonl +0 -0
  1176. {bigframes-2.35.0 → bigframes-2.37.0}/tests/benchmark/tpch/q1.py +0 -0
  1177. {bigframes-2.35.0 → bigframes-2.37.0}/tests/benchmark/tpch/q10.py +0 -0
  1178. {bigframes-2.35.0 → bigframes-2.37.0}/tests/benchmark/tpch/q11.py +0 -0
  1179. {bigframes-2.35.0 → bigframes-2.37.0}/tests/benchmark/tpch/q12.py +0 -0
  1180. {bigframes-2.35.0 → bigframes-2.37.0}/tests/benchmark/tpch/q13.py +0 -0
  1181. {bigframes-2.35.0 → bigframes-2.37.0}/tests/benchmark/tpch/q14.py +0 -0
  1182. {bigframes-2.35.0 → bigframes-2.37.0}/tests/benchmark/tpch/q15.py +0 -0
  1183. {bigframes-2.35.0 → bigframes-2.37.0}/tests/benchmark/tpch/q16.py +0 -0
  1184. {bigframes-2.35.0 → bigframes-2.37.0}/tests/benchmark/tpch/q17.py +0 -0
  1185. {bigframes-2.35.0 → bigframes-2.37.0}/tests/benchmark/tpch/q18.py +0 -0
  1186. {bigframes-2.35.0 → bigframes-2.37.0}/tests/benchmark/tpch/q19.py +0 -0
  1187. {bigframes-2.35.0 → bigframes-2.37.0}/tests/benchmark/tpch/q2.py +0 -0
  1188. {bigframes-2.35.0 → bigframes-2.37.0}/tests/benchmark/tpch/q20.py +0 -0
  1189. {bigframes-2.35.0 → bigframes-2.37.0}/tests/benchmark/tpch/q21.py +0 -0
  1190. {bigframes-2.35.0 → bigframes-2.37.0}/tests/benchmark/tpch/q22.py +0 -0
  1191. {bigframes-2.35.0 → bigframes-2.37.0}/tests/benchmark/tpch/q3.py +0 -0
  1192. {bigframes-2.35.0 → bigframes-2.37.0}/tests/benchmark/tpch/q4.py +0 -0
  1193. {bigframes-2.35.0 → bigframes-2.37.0}/tests/benchmark/tpch/q5.py +0 -0
  1194. {bigframes-2.35.0 → bigframes-2.37.0}/tests/benchmark/tpch/q6.py +0 -0
  1195. {bigframes-2.35.0 → bigframes-2.37.0}/tests/benchmark/tpch/q7.py +0 -0
  1196. {bigframes-2.35.0 → bigframes-2.37.0}/tests/benchmark/tpch/q8.py +0 -0
  1197. {bigframes-2.35.0 → bigframes-2.37.0}/tests/benchmark/tpch/q9.py +0 -0
  1198. {bigframes-2.35.0 → bigframes-2.37.0}/tests/benchmark/utils.py +0 -0
  1199. {bigframes-2.35.0 → bigframes-2.37.0}/tests/data/hockey_players.json +0 -0
  1200. {bigframes-2.35.0 → bigframes-2.37.0}/tests/data/hockey_players.jsonl +0 -0
  1201. {bigframes-2.35.0 → bigframes-2.37.0}/tests/data/json.jsonl +0 -0
  1202. {bigframes-2.35.0 → bigframes-2.37.0}/tests/data/json_schema.json +0 -0
  1203. {bigframes-2.35.0 → bigframes-2.37.0}/tests/data/matrix_2by3.json +0 -0
  1204. {bigframes-2.35.0 → bigframes-2.37.0}/tests/data/matrix_2by3.jsonl +0 -0
  1205. {bigframes-2.35.0 → bigframes-2.37.0}/tests/data/matrix_3by4.json +0 -0
  1206. {bigframes-2.35.0 → bigframes-2.37.0}/tests/data/matrix_3by4.jsonl +0 -0
  1207. {bigframes-2.35.0 → bigframes-2.37.0}/tests/data/nested.jsonl +0 -0
  1208. {bigframes-2.35.0 → bigframes-2.37.0}/tests/data/nested_schema.json +0 -0
  1209. {bigframes-2.35.0 → bigframes-2.37.0}/tests/data/nested_structs.jsonl +0 -0
  1210. {bigframes-2.35.0 → bigframes-2.37.0}/tests/data/nested_structs_schema.json +0 -0
  1211. {bigframes-2.35.0 → bigframes-2.37.0}/tests/data/penguins.jsonl +0 -0
  1212. {bigframes-2.35.0 → bigframes-2.37.0}/tests/data/penguins_schema.json +0 -0
  1213. {bigframes-2.35.0 → bigframes-2.37.0}/tests/data/people.csv +0 -0
  1214. {bigframes-2.35.0 → bigframes-2.37.0}/tests/data/ratings.jsonl +0 -0
  1215. {bigframes-2.35.0 → bigframes-2.37.0}/tests/data/ratings_schema.json +0 -0
  1216. {bigframes-2.35.0 → bigframes-2.37.0}/tests/data/repeated.jsonl +0 -0
  1217. {bigframes-2.35.0 → bigframes-2.37.0}/tests/data/repeated_schema.json +0 -0
  1218. {bigframes-2.35.0 → bigframes-2.37.0}/tests/data/scalars.jsonl +0 -0
  1219. {bigframes-2.35.0 → bigframes-2.37.0}/tests/data/scalars_schema.json +0 -0
  1220. {bigframes-2.35.0 → bigframes-2.37.0}/tests/data/time_series.jsonl +0 -0
  1221. {bigframes-2.35.0 → bigframes-2.37.0}/tests/data/time_series_schema.json +0 -0
  1222. {bigframes-2.35.0 → bigframes-2.37.0}/tests/data/urban_areas.jsonl +0 -0
  1223. {bigframes-2.35.0 → bigframes-2.37.0}/tests/data/urban_areas_schema.json +0 -0
  1224. {bigframes-2.35.0 → bigframes-2.37.0}/tests/js/babel.config.cjs +0 -0
  1225. {bigframes-2.35.0 → bigframes-2.37.0}/tests/js/jest.config.cjs +0 -0
  1226. {bigframes-2.35.0 → bigframes-2.37.0}/tests/js/jest.setup.js +0 -0
  1227. {bigframes-2.35.0 → bigframes-2.37.0}/tests/js/package-lock.json +0 -0
  1228. {bigframes-2.35.0 → bigframes-2.37.0}/tests/js/package.json +0 -0
  1229. {bigframes-2.35.0 → bigframes-2.37.0}/tests/js/table_widget.test.js +0 -0
  1230. {bigframes-2.35.0 → bigframes-2.37.0}/tests/system/__init__.py +0 -0
  1231. {bigframes-2.35.0 → bigframes-2.37.0}/tests/system/conftest.py +0 -0
  1232. {bigframes-2.35.0 → bigframes-2.37.0}/tests/system/large/__init__.py +0 -0
  1233. {bigframes-2.35.0 → bigframes-2.37.0}/tests/system/large/bigquery/__init__.py +0 -0
  1234. {bigframes-2.35.0 → bigframes-2.37.0}/tests/system/large/bigquery/test_io.py +0 -0
  1235. {bigframes-2.35.0 → bigframes-2.37.0}/tests/system/large/bigquery/test_ml.py +0 -0
  1236. {bigframes-2.35.0 → bigframes-2.37.0}/tests/system/large/bigquery/test_obj.py +0 -0
  1237. {bigframes-2.35.0 → bigframes-2.37.0}/tests/system/large/bigquery/test_table.py +0 -0
  1238. {bigframes-2.35.0 → bigframes-2.37.0}/tests/system/large/blob/test_function.py +0 -0
  1239. {bigframes-2.35.0 → bigframes-2.37.0}/tests/system/large/functions/__init__.py +0 -0
  1240. {bigframes-2.35.0 → bigframes-2.37.0}/tests/system/large/ml/conftest.py +0 -0
  1241. {bigframes-2.35.0 → bigframes-2.37.0}/tests/system/large/ml/test_cluster.py +0 -0
  1242. {bigframes-2.35.0 → bigframes-2.37.0}/tests/system/large/ml/test_compose.py +0 -0
  1243. {bigframes-2.35.0 → bigframes-2.37.0}/tests/system/large/ml/test_core.py +0 -0
  1244. {bigframes-2.35.0 → bigframes-2.37.0}/tests/system/large/ml/test_decomposition.py +0 -0
  1245. {bigframes-2.35.0 → bigframes-2.37.0}/tests/system/large/ml/test_ensemble.py +0 -0
  1246. {bigframes-2.35.0 → bigframes-2.37.0}/tests/system/large/ml/test_forecasting.py +0 -0
  1247. {bigframes-2.35.0 → bigframes-2.37.0}/tests/system/large/ml/test_linear_model.py +0 -0
  1248. {bigframes-2.35.0 → bigframes-2.37.0}/tests/system/large/ml/test_model_selection.py +0 -0
  1249. {bigframes-2.35.0 → bigframes-2.37.0}/tests/system/large/ml/test_pipeline.py +0 -0
  1250. {bigframes-2.35.0 → bigframes-2.37.0}/tests/system/large/operations/__init__.py +0 -0
  1251. {bigframes-2.35.0 → bigframes-2.37.0}/tests/system/large/operations/conftest.py +0 -0
  1252. {bigframes-2.35.0 → bigframes-2.37.0}/tests/system/large/operations/test_ai.py +0 -0
  1253. {bigframes-2.35.0 → bigframes-2.37.0}/tests/system/large/operations/test_semantics.py +0 -0
  1254. {bigframes-2.35.0 → bigframes-2.37.0}/tests/system/large/streaming/test_bigtable.py +0 -0
  1255. {bigframes-2.35.0 → bigframes-2.37.0}/tests/system/large/streaming/test_pubsub.py +0 -0
  1256. {bigframes-2.35.0 → bigframes-2.37.0}/tests/system/large/test_dataframe.py +0 -0
  1257. {bigframes-2.35.0 → bigframes-2.37.0}/tests/system/large/test_dataframe_io.py +0 -0
  1258. {bigframes-2.35.0 → bigframes-2.37.0}/tests/system/large/test_location.py +0 -0
  1259. {bigframes-2.35.0 → bigframes-2.37.0}/tests/system/large/test_session.py +0 -0
  1260. {bigframes-2.35.0 → bigframes-2.37.0}/tests/system/load/conftest.py +0 -0
  1261. {bigframes-2.35.0 → bigframes-2.37.0}/tests/system/load/test_large_tables.py +0 -0
  1262. {bigframes-2.35.0 → bigframes-2.37.0}/tests/system/small/__init__.py +0 -0
  1263. {bigframes-2.35.0 → bigframes-2.37.0}/tests/system/small/bigquery/__init__.py +0 -0
  1264. {bigframes-2.35.0 → bigframes-2.37.0}/tests/system/small/bigquery/test_ai.py +0 -0
  1265. {bigframes-2.35.0 → bigframes-2.37.0}/tests/system/small/bigquery/test_approx_agg.py +0 -0
  1266. {bigframes-2.35.0 → bigframes-2.37.0}/tests/system/small/bigquery/test_json.py +0 -0
  1267. {bigframes-2.35.0 → bigframes-2.37.0}/tests/system/small/bigquery/test_vector_search.py +0 -0
  1268. {bigframes-2.35.0 → bigframes-2.37.0}/tests/system/small/blob/test_io.py +0 -0
  1269. {bigframes-2.35.0 → bigframes-2.37.0}/tests/system/small/blob/test_properties.py +0 -0
  1270. {bigframes-2.35.0 → bigframes-2.37.0}/tests/system/small/blob/test_urls.py +0 -0
  1271. {bigframes-2.35.0 → bigframes-2.37.0}/tests/system/small/core/__init__.py +0 -0
  1272. {bigframes-2.35.0 → bigframes-2.37.0}/tests/system/small/core/indexes/__init__.py +0 -0
  1273. {bigframes-2.35.0 → bigframes-2.37.0}/tests/system/small/core/indexes/test_base.py +0 -0
  1274. {bigframes-2.35.0 → bigframes-2.37.0}/tests/system/small/core/indexes/test_datetimes.py +0 -0
  1275. {bigframes-2.35.0 → bigframes-2.37.0}/tests/system/small/core/logging/__init__.py +0 -0
  1276. {bigframes-2.35.0 → bigframes-2.37.0}/tests/system/small/core/logging/test_data_types.py +0 -0
  1277. {bigframes-2.35.0 → bigframes-2.37.0}/tests/system/small/core/test_convert.py +0 -0
  1278. {bigframes-2.35.0 → bigframes-2.37.0}/tests/system/small/core/test_indexers.py +0 -0
  1279. {bigframes-2.35.0 → bigframes-2.37.0}/tests/system/small/engines/__init__.py +0 -0
  1280. {bigframes-2.35.0 → bigframes-2.37.0}/tests/system/small/engines/conftest.py +0 -0
  1281. {bigframes-2.35.0 → bigframes-2.37.0}/tests/system/small/engines/test_aggregation.py +0 -0
  1282. {bigframes-2.35.0 → bigframes-2.37.0}/tests/system/small/engines/test_array_ops.py +0 -0
  1283. {bigframes-2.35.0 → bigframes-2.37.0}/tests/system/small/engines/test_bool_ops.py +0 -0
  1284. {bigframes-2.35.0 → bigframes-2.37.0}/tests/system/small/engines/test_comparison_ops.py +0 -0
  1285. {bigframes-2.35.0 → bigframes-2.37.0}/tests/system/small/engines/test_concat.py +0 -0
  1286. {bigframes-2.35.0 → bigframes-2.37.0}/tests/system/small/engines/test_filtering.py +0 -0
  1287. {bigframes-2.35.0 → bigframes-2.37.0}/tests/system/small/engines/test_generic_ops.py +0 -0
  1288. {bigframes-2.35.0 → bigframes-2.37.0}/tests/system/small/engines/test_join.py +0 -0
  1289. {bigframes-2.35.0 → bigframes-2.37.0}/tests/system/small/engines/test_read_local.py +0 -0
  1290. {bigframes-2.35.0 → bigframes-2.37.0}/tests/system/small/engines/test_selection.py +0 -0
  1291. {bigframes-2.35.0 → bigframes-2.37.0}/tests/system/small/engines/test_slicing.py +0 -0
  1292. {bigframes-2.35.0 → bigframes-2.37.0}/tests/system/small/engines/test_sorting.py +0 -0
  1293. {bigframes-2.35.0 → bigframes-2.37.0}/tests/system/small/engines/test_strings.py +0 -0
  1294. {bigframes-2.35.0 → bigframes-2.37.0}/tests/system/small/engines/test_temporal_ops.py +0 -0
  1295. {bigframes-2.35.0 → bigframes-2.37.0}/tests/system/small/engines/test_windowing.py +0 -0
  1296. {bigframes-2.35.0 → bigframes-2.37.0}/tests/system/small/functions/__init__.py +0 -0
  1297. {bigframes-2.35.0 → bigframes-2.37.0}/tests/system/small/functions/test_remote_function.py +0 -0
  1298. {bigframes-2.35.0 → bigframes-2.37.0}/tests/system/small/geopandas/test_geoseries.py +0 -0
  1299. {bigframes-2.35.0 → bigframes-2.37.0}/tests/system/small/ml/__init__.py +0 -0
  1300. {bigframes-2.35.0 → bigframes-2.37.0}/tests/system/small/ml/conftest.py +0 -0
  1301. {bigframes-2.35.0 → bigframes-2.37.0}/tests/system/small/ml/test_cluster.py +0 -0
  1302. {bigframes-2.35.0 → bigframes-2.37.0}/tests/system/small/ml/test_core.py +0 -0
  1303. {bigframes-2.35.0 → bigframes-2.37.0}/tests/system/small/ml/test_decomposition.py +0 -0
  1304. {bigframes-2.35.0 → bigframes-2.37.0}/tests/system/small/ml/test_ensemble.py +0 -0
  1305. {bigframes-2.35.0 → bigframes-2.37.0}/tests/system/small/ml/test_forecasting.py +0 -0
  1306. {bigframes-2.35.0 → bigframes-2.37.0}/tests/system/small/ml/test_imported.py +0 -0
  1307. {bigframes-2.35.0 → bigframes-2.37.0}/tests/system/small/ml/test_impute.py +0 -0
  1308. {bigframes-2.35.0 → bigframes-2.37.0}/tests/system/small/ml/test_linear_model.py +0 -0
  1309. {bigframes-2.35.0 → bigframes-2.37.0}/tests/system/small/ml/test_metrics_pairwise.py +0 -0
  1310. {bigframes-2.35.0 → bigframes-2.37.0}/tests/system/small/ml/test_preprocessing.py +0 -0
  1311. {bigframes-2.35.0 → bigframes-2.37.0}/tests/system/small/ml/test_register.py +0 -0
  1312. {bigframes-2.35.0 → bigframes-2.37.0}/tests/system/small/ml/test_remote.py +0 -0
  1313. {bigframes-2.35.0 → bigframes-2.37.0}/tests/system/small/operations/__init__.py +0 -0
  1314. {bigframes-2.35.0 → bigframes-2.37.0}/tests/system/small/operations/test_ai.py +0 -0
  1315. {bigframes-2.35.0 → bigframes-2.37.0}/tests/system/small/operations/test_lists.py +0 -0
  1316. {bigframes-2.35.0 → bigframes-2.37.0}/tests/system/small/operations/test_plotting.py +0 -0
  1317. {bigframes-2.35.0 → bigframes-2.37.0}/tests/system/small/operations/test_semantics.py +0 -0
  1318. {bigframes-2.35.0 → bigframes-2.37.0}/tests/system/small/operations/test_strings.py +0 -0
  1319. {bigframes-2.35.0 → bigframes-2.37.0}/tests/system/small/operations/test_struct.py +0 -0
  1320. {bigframes-2.35.0 → bigframes-2.37.0}/tests/system/small/pandas/test_describe.py +0 -0
  1321. {bigframes-2.35.0 → bigframes-2.37.0}/tests/system/small/pandas/test_read_gbq_colab.py +0 -0
  1322. {bigframes-2.35.0 → bigframes-2.37.0}/tests/system/small/pandas/test_read_gbq_information_schema.py +0 -0
  1323. {bigframes-2.35.0 → bigframes-2.37.0}/tests/system/small/regression/test_issue355_merge_after_filter.py +0 -0
  1324. {bigframes-2.35.0 → bigframes-2.37.0}/tests/system/small/session/__init__.py +0 -0
  1325. {bigframes-2.35.0 → bigframes-2.37.0}/tests/system/small/session/test_read_gbq_colab.py +0 -0
  1326. {bigframes-2.35.0 → bigframes-2.37.0}/tests/system/small/session/test_read_gbq_query.py +0 -0
  1327. {bigframes-2.35.0 → bigframes-2.37.0}/tests/system/small/session/test_session_logging.py +0 -0
  1328. {bigframes-2.35.0 → bigframes-2.37.0}/tests/system/small/test_bq_sessions.py +0 -0
  1329. {bigframes-2.35.0 → bigframes-2.37.0}/tests/system/small/test_encryption.py +0 -0
  1330. {bigframes-2.35.0 → bigframes-2.37.0}/tests/system/small/test_index.py +0 -0
  1331. {bigframes-2.35.0 → bigframes-2.37.0}/tests/system/small/test_ipython.py +0 -0
  1332. {bigframes-2.35.0 → bigframes-2.37.0}/tests/system/small/test_large_local_data.py +0 -0
  1333. {bigframes-2.35.0 → bigframes-2.37.0}/tests/system/small/test_magics.py +0 -0
  1334. {bigframes-2.35.0 → bigframes-2.37.0}/tests/system/small/test_polars_execution.py +0 -0
  1335. {bigframes-2.35.0 → bigframes-2.37.0}/tests/system/small/test_scalar.py +0 -0
  1336. {bigframes-2.35.0 → bigframes-2.37.0}/tests/system/small/test_session_as_bpd.py +0 -0
  1337. {bigframes-2.35.0 → bigframes-2.37.0}/tests/unit/__init__.py +0 -0
  1338. {bigframes-2.35.0 → bigframes-2.37.0}/tests/unit/_config/__init__.py +0 -0
  1339. {bigframes-2.35.0 → bigframes-2.37.0}/tests/unit/_config/test_bigquery_options.py +0 -0
  1340. {bigframes-2.35.0 → bigframes-2.37.0}/tests/unit/_config/test_compute_options.py +0 -0
  1341. {bigframes-2.35.0 → bigframes-2.37.0}/tests/unit/_config/test_experiment_options.py +0 -0
  1342. {bigframes-2.35.0 → bigframes-2.37.0}/tests/unit/_config/test_threaded_options.py +0 -0
  1343. {bigframes-2.35.0 → bigframes-2.37.0}/tests/unit/_tools/__init__.py +0 -0
  1344. {bigframes-2.35.0 → bigframes-2.37.0}/tests/unit/_tools/test_strings.py +0 -0
  1345. {bigframes-2.35.0 → bigframes-2.37.0}/tests/unit/bigquery/__init__.py +0 -0
  1346. {bigframes-2.35.0 → bigframes-2.37.0}/tests/unit/bigquery/_operations/test_io.py +0 -0
  1347. {bigframes-2.35.0 → bigframes-2.37.0}/tests/unit/bigquery/test_json.py +0 -0
  1348. {bigframes-2.35.0 → bigframes-2.37.0}/tests/unit/bigquery/test_ml.py +0 -0
  1349. {bigframes-2.35.0 → bigframes-2.37.0}/tests/unit/bigquery/test_obj.py +0 -0
  1350. {bigframes-2.35.0 → bigframes-2.37.0}/tests/unit/bigquery/test_table.py +0 -0
  1351. {bigframes-2.35.0 → bigframes-2.37.0}/tests/unit/conftest.py +0 -0
  1352. {bigframes-2.35.0 → bigframes-2.37.0}/tests/unit/core/__init__.py +0 -0
  1353. {bigframes-2.35.0 → bigframes-2.37.0}/tests/unit/core/compile/__init__.py +0 -0
  1354. {bigframes-2.35.0 → bigframes-2.37.0}/tests/unit/core/compile/sqlglot/__init__.py +0 -0
  1355. {bigframes-2.35.0 → bigframes-2.37.0}/tests/unit/core/compile/sqlglot/aggregations/__init__.py +0 -0
  1356. {bigframes-2.35.0 → bigframes-2.37.0}/tests/unit/core/compile/sqlglot/aggregations/snapshots/test_unary_compiler/test_size_unary/out.sql +0 -0
  1357. {bigframes-2.35.0 → bigframes-2.37.0}/tests/unit/core/compile/sqlglot/aggregations/test_binary_compiler.py +0 -0
  1358. {bigframes-2.35.0 → bigframes-2.37.0}/tests/unit/core/compile/sqlglot/aggregations/test_nullary_compiler.py +0 -0
  1359. {bigframes-2.35.0 → bigframes-2.37.0}/tests/unit/core/compile/sqlglot/aggregations/test_op_registration.py +0 -0
  1360. {bigframes-2.35.0 → bigframes-2.37.0}/tests/unit/core/compile/sqlglot/aggregations/test_ordered_unary_compiler.py +0 -0
  1361. {bigframes-2.35.0 → bigframes-2.37.0}/tests/unit/core/compile/sqlglot/aggregations/test_unary_compiler.py +0 -0
  1362. {bigframes-2.35.0 → bigframes-2.37.0}/tests/unit/core/compile/sqlglot/aggregations/test_windows.py +0 -0
  1363. {bigframes-2.35.0 → bigframes-2.37.0}/tests/unit/core/compile/sqlglot/conftest.py +0 -0
  1364. {bigframes-2.35.0 → bigframes-2.37.0}/tests/unit/core/compile/sqlglot/expressions/__init__.py +0 -0
  1365. {bigframes-2.35.0 → bigframes-2.37.0}/tests/unit/core/compile/sqlglot/expressions/snapshots/test_datetime_ops/test_integer_label_to_datetime/out.sql +0 -0
  1366. {bigframes-2.35.0 → bigframes-2.37.0}/tests/unit/core/compile/sqlglot/expressions/test_ai_ops.py +0 -0
  1367. {bigframes-2.35.0 → bigframes-2.37.0}/tests/unit/core/compile/sqlglot/expressions/test_array_ops.py +0 -0
  1368. {bigframes-2.35.0 → bigframes-2.37.0}/tests/unit/core/compile/sqlglot/expressions/test_blob_ops.py +0 -0
  1369. {bigframes-2.35.0 → bigframes-2.37.0}/tests/unit/core/compile/sqlglot/expressions/test_bool_ops.py +0 -0
  1370. {bigframes-2.35.0 → bigframes-2.37.0}/tests/unit/core/compile/sqlglot/expressions/test_comparison_ops.py +0 -0
  1371. {bigframes-2.35.0 → bigframes-2.37.0}/tests/unit/core/compile/sqlglot/expressions/test_generic_ops.py +0 -0
  1372. {bigframes-2.35.0 → bigframes-2.37.0}/tests/unit/core/compile/sqlglot/expressions/test_geo_ops.py +0 -0
  1373. {bigframes-2.35.0 → bigframes-2.37.0}/tests/unit/core/compile/sqlglot/expressions/test_json_ops.py +0 -0
  1374. {bigframes-2.35.0 → bigframes-2.37.0}/tests/unit/core/compile/sqlglot/expressions/test_struct_ops.py +0 -0
  1375. {bigframes-2.35.0 → bigframes-2.37.0}/tests/unit/core/compile/sqlglot/expressions/test_timedelta_ops.py +0 -0
  1376. {bigframes-2.35.0 → bigframes-2.37.0}/tests/unit/core/compile/sqlglot/snapshots/test_compile_projection/test_compile_projection/out.sql +0 -0
  1377. {bigframes-2.35.0 → bigframes-2.37.0}/tests/unit/core/compile/sqlglot/snapshots/test_compile_readlocal/test_compile_readlocal/out.sql +0 -0
  1378. {bigframes-2.35.0 → bigframes-2.37.0}/tests/unit/core/compile/sqlglot/snapshots/test_compile_readlocal/test_compile_readlocal_w_json_df/out.sql +0 -0
  1379. {bigframes-2.35.0 → bigframes-2.37.0}/tests/unit/core/compile/sqlglot/snapshots/test_compile_readlocal/test_compile_readlocal_w_lists_df/out.sql +0 -0
  1380. {bigframes-2.35.0 → bigframes-2.37.0}/tests/unit/core/compile/sqlglot/snapshots/test_compile_readlocal/test_compile_readlocal_w_special_values/out.sql +0 -0
  1381. {bigframes-2.35.0 → bigframes-2.37.0}/tests/unit/core/compile/sqlglot/snapshots/test_compile_readlocal/test_compile_readlocal_w_structs_df/out.sql +0 -0
  1382. {bigframes-2.35.0 → bigframes-2.37.0}/tests/unit/core/compile/sqlglot/test_compile_aggregate.py +0 -0
  1383. {bigframes-2.35.0 → bigframes-2.37.0}/tests/unit/core/compile/sqlglot/test_compile_explode.py +0 -0
  1384. {bigframes-2.35.0 → bigframes-2.37.0}/tests/unit/core/compile/sqlglot/test_compile_filter.py +0 -0
  1385. {bigframes-2.35.0 → bigframes-2.37.0}/tests/unit/core/compile/sqlglot/test_compile_geo.py +0 -0
  1386. {bigframes-2.35.0 → bigframes-2.37.0}/tests/unit/core/compile/sqlglot/test_compile_isin.py +0 -0
  1387. {bigframes-2.35.0 → bigframes-2.37.0}/tests/unit/core/compile/sqlglot/test_compile_join.py +0 -0
  1388. {bigframes-2.35.0 → bigframes-2.37.0}/tests/unit/core/compile/sqlglot/test_compile_random_sample.py +0 -0
  1389. {bigframes-2.35.0 → bigframes-2.37.0}/tests/unit/core/compile/sqlglot/test_compile_readlocal.py +0 -0
  1390. {bigframes-2.35.0 → bigframes-2.37.0}/tests/unit/core/compile/sqlglot/test_compile_window.py +0 -0
  1391. {bigframes-2.35.0 → bigframes-2.37.0}/tests/unit/core/compile/sqlglot/test_sqlglot_types.py +0 -0
  1392. {bigframes-2.35.0 → bigframes-2.37.0}/tests/unit/core/logging/__init__.py +0 -0
  1393. {bigframes-2.35.0 → bigframes-2.37.0}/tests/unit/core/logging/test_data_types.py +0 -0
  1394. {bigframes-2.35.0 → bigframes-2.37.0}/tests/unit/core/logging/test_log_adapter.py +0 -0
  1395. {bigframes-2.35.0 → bigframes-2.37.0}/tests/unit/core/rewrite/test_slices.py +0 -0
  1396. {bigframes-2.35.0 → bigframes-2.37.0}/tests/unit/core/sql/snapshots/test_ml/test_create_model_basic/create_model_basic.sql +0 -0
  1397. {bigframes-2.35.0 → bigframes-2.37.0}/tests/unit/core/sql/snapshots/test_ml/test_create_model_if_not_exists/create_model_if_not_exists.sql +0 -0
  1398. {bigframes-2.35.0 → bigframes-2.37.0}/tests/unit/core/sql/snapshots/test_ml/test_create_model_list_option/create_model_list_option.sql +0 -0
  1399. {bigframes-2.35.0 → bigframes-2.37.0}/tests/unit/core/sql/snapshots/test_ml/test_create_model_remote/create_model_remote.sql +0 -0
  1400. {bigframes-2.35.0 → bigframes-2.37.0}/tests/unit/core/sql/snapshots/test_ml/test_create_model_remote_default/create_model_remote_default.sql +0 -0
  1401. {bigframes-2.35.0 → bigframes-2.37.0}/tests/unit/core/sql/snapshots/test_ml/test_create_model_replace/create_model_replace.sql +0 -0
  1402. {bigframes-2.35.0 → bigframes-2.37.0}/tests/unit/core/sql/snapshots/test_ml/test_create_model_training_data_and_holiday/create_model_training_data_and_holiday.sql +0 -0
  1403. {bigframes-2.35.0 → bigframes-2.37.0}/tests/unit/core/sql/snapshots/test_ml/test_create_model_transform/create_model_transform.sql +0 -0
  1404. {bigframes-2.35.0 → bigframes-2.37.0}/tests/unit/core/sql/snapshots/test_ml/test_evaluate_model_basic/evaluate_model_basic.sql +0 -0
  1405. {bigframes-2.35.0 → bigframes-2.37.0}/tests/unit/core/sql/snapshots/test_ml/test_evaluate_model_with_options/evaluate_model_with_options.sql +0 -0
  1406. {bigframes-2.35.0 → bigframes-2.37.0}/tests/unit/core/sql/snapshots/test_ml/test_evaluate_model_with_table/evaluate_model_with_table.sql +0 -0
  1407. {bigframes-2.35.0 → bigframes-2.37.0}/tests/unit/core/sql/snapshots/test_ml/test_explain_predict_model_basic/explain_predict_model_basic.sql +0 -0
  1408. {bigframes-2.35.0 → bigframes-2.37.0}/tests/unit/core/sql/snapshots/test_ml/test_explain_predict_model_with_options/explain_predict_model_with_options.sql +0 -0
  1409. {bigframes-2.35.0 → bigframes-2.37.0}/tests/unit/core/sql/snapshots/test_ml/test_generate_embedding_model_basic/generate_embedding_model_basic.sql +0 -0
  1410. {bigframes-2.35.0 → bigframes-2.37.0}/tests/unit/core/sql/snapshots/test_ml/test_generate_embedding_model_with_options/generate_embedding_model_with_options.sql +0 -0
  1411. {bigframes-2.35.0 → bigframes-2.37.0}/tests/unit/core/sql/snapshots/test_ml/test_generate_text_model_basic/generate_text_model_basic.sql +0 -0
  1412. {bigframes-2.35.0 → bigframes-2.37.0}/tests/unit/core/sql/snapshots/test_ml/test_generate_text_model_with_options/generate_text_model_with_options.sql +0 -0
  1413. {bigframes-2.35.0 → bigframes-2.37.0}/tests/unit/core/sql/snapshots/test_ml/test_global_explain_model_basic/global_explain_model_basic.sql +0 -0
  1414. {bigframes-2.35.0 → bigframes-2.37.0}/tests/unit/core/sql/snapshots/test_ml/test_global_explain_model_with_options/global_explain_model_with_options.sql +0 -0
  1415. {bigframes-2.35.0 → bigframes-2.37.0}/tests/unit/core/sql/snapshots/test_ml/test_predict_model_basic/predict_model_basic.sql +0 -0
  1416. {bigframes-2.35.0 → bigframes-2.37.0}/tests/unit/core/sql/snapshots/test_ml/test_predict_model_with_options/predict_model_with_options.sql +0 -0
  1417. {bigframes-2.35.0 → bigframes-2.37.0}/tests/unit/core/sql/snapshots/test_ml/test_transform_model_basic/transform_model_basic.sql +0 -0
  1418. {bigframes-2.35.0 → bigframes-2.37.0}/tests/unit/core/sql/test_io.py +0 -0
  1419. {bigframes-2.35.0 → bigframes-2.37.0}/tests/unit/core/sql/test_ml.py +0 -0
  1420. {bigframes-2.35.0 → bigframes-2.37.0}/tests/unit/core/test_bf_utils.py +0 -0
  1421. {bigframes-2.35.0 → bigframes-2.37.0}/tests/unit/core/test_blocks.py +0 -0
  1422. {bigframes-2.35.0 → bigframes-2.37.0}/tests/unit/core/test_expression.py +0 -0
  1423. {bigframes-2.35.0 → bigframes-2.37.0}/tests/unit/core/test_guid.py +0 -0
  1424. {bigframes-2.35.0 → bigframes-2.37.0}/tests/unit/core/test_ibis_types.py +0 -0
  1425. {bigframes-2.35.0 → bigframes-2.37.0}/tests/unit/core/test_indexes.py +0 -0
  1426. {bigframes-2.35.0 → bigframes-2.37.0}/tests/unit/core/test_pyarrow_utils.py +0 -0
  1427. {bigframes-2.35.0 → bigframes-2.37.0}/tests/unit/core/test_pyformat.py +0 -0
  1428. {bigframes-2.35.0 → bigframes-2.37.0}/tests/unit/core/test_slices.py +0 -0
  1429. {bigframes-2.35.0 → bigframes-2.37.0}/tests/unit/core/test_sql.py +0 -0
  1430. {bigframes-2.35.0 → bigframes-2.37.0}/tests/unit/core/test_windowspec.py +0 -0
  1431. {bigframes-2.35.0 → bigframes-2.37.0}/tests/unit/core/tools/__init__.py +0 -0
  1432. {bigframes-2.35.0 → bigframes-2.37.0}/tests/unit/core/tools/test_bigquery_schema.py +0 -0
  1433. {bigframes-2.35.0 → bigframes-2.37.0}/tests/unit/core/tools/test_datetimes.py +0 -0
  1434. {bigframes-2.35.0 → bigframes-2.37.0}/tests/unit/display/test_html.py +0 -0
  1435. {bigframes-2.35.0 → bigframes-2.37.0}/tests/unit/functions/__init__.py +0 -0
  1436. {bigframes-2.35.0 → bigframes-2.37.0}/tests/unit/functions/test_function_template.py +0 -0
  1437. {bigframes-2.35.0 → bigframes-2.37.0}/tests/unit/functions/test_function_typing.py +0 -0
  1438. {bigframes-2.35.0 → bigframes-2.37.0}/tests/unit/functions/test_remote_function.py +0 -0
  1439. {bigframes-2.35.0 → bigframes-2.37.0}/tests/unit/ml/__init__.py +0 -0
  1440. {bigframes-2.35.0 → bigframes-2.37.0}/tests/unit/ml/test_api_primitives.py +0 -0
  1441. {bigframes-2.35.0 → bigframes-2.37.0}/tests/unit/ml/test_compose.py +0 -0
  1442. {bigframes-2.35.0 → bigframes-2.37.0}/tests/unit/ml/test_forecasting.py +0 -0
  1443. {bigframes-2.35.0 → bigframes-2.37.0}/tests/unit/ml/test_golden_sql.py +0 -0
  1444. {bigframes-2.35.0 → bigframes-2.37.0}/tests/unit/ml/test_matrix_factorization.py +0 -0
  1445. {bigframes-2.35.0 → bigframes-2.37.0}/tests/unit/ml/test_pipeline.py +0 -0
  1446. {bigframes-2.35.0 → bigframes-2.37.0}/tests/unit/ml/test_sql.py +0 -0
  1447. {bigframes-2.35.0/tests/unit/core/compile/googlesql → bigframes-2.37.0/tests/unit/operations}/__init__.py +0 -0
  1448. {bigframes-2.35.0 → bigframes-2.37.0}/tests/unit/operations/test_output_schemas.py +0 -0
  1449. {bigframes-2.35.0 → bigframes-2.37.0}/tests/unit/pandas/io/test_api.py +0 -0
  1450. {bigframes-2.35.0 → bigframes-2.37.0}/tests/unit/session/__init__.py +0 -0
  1451. {bigframes-2.35.0 → bigframes-2.37.0}/tests/unit/session/test_clients.py +0 -0
  1452. {bigframes-2.35.0 → bigframes-2.37.0}/tests/unit/session/test_io_arrow.py +0 -0
  1453. {bigframes-2.35.0 → bigframes-2.37.0}/tests/unit/session/test_io_bigquery.py +0 -0
  1454. {bigframes-2.35.0 → bigframes-2.37.0}/tests/unit/session/test_io_pandas.py +0 -0
  1455. {bigframes-2.35.0 → bigframes-2.37.0}/tests/unit/session/test_local_scan_executor.py +0 -0
  1456. {bigframes-2.35.0 → bigframes-2.37.0}/tests/unit/session/test_metrics.py +0 -0
  1457. {bigframes-2.35.0 → bigframes-2.37.0}/tests/unit/session/test_read_gbq_colab.py +0 -0
  1458. {bigframes-2.35.0 → bigframes-2.37.0}/tests/unit/session/test_read_gbq_query.py +0 -0
  1459. {bigframes-2.35.0 → bigframes-2.37.0}/tests/unit/session/test_time.py +0 -0
  1460. {bigframes-2.35.0 → bigframes-2.37.0}/tests/unit/test_clients.py +0 -0
  1461. {bigframes-2.35.0 → bigframes-2.37.0}/tests/unit/test_constants.py +0 -0
  1462. {bigframes-2.35.0 → bigframes-2.37.0}/tests/unit/test_daemon.py +0 -0
  1463. {bigframes-2.35.0 → bigframes-2.37.0}/tests/unit/test_dataframe.py +0 -0
  1464. {bigframes-2.35.0 → bigframes-2.37.0}/tests/unit/test_dataframe_io.py +0 -0
  1465. {bigframes-2.35.0 → bigframes-2.37.0}/tests/unit/test_dtypes.py +0 -0
  1466. {bigframes-2.35.0 → bigframes-2.37.0}/tests/unit/test_features.py +0 -0
  1467. {bigframes-2.35.0 → bigframes-2.37.0}/tests/unit/test_formatting_helpers.py +0 -0
  1468. {bigframes-2.35.0 → bigframes-2.37.0}/tests/unit/test_index.py +0 -0
  1469. {bigframes-2.35.0 → bigframes-2.37.0}/tests/unit/test_interchange.py +0 -0
  1470. {bigframes-2.35.0 → bigframes-2.37.0}/tests/unit/test_local_data.py +0 -0
  1471. {bigframes-2.35.0 → bigframes-2.37.0}/tests/unit/test_local_engine.py +0 -0
  1472. {bigframes-2.35.0 → bigframes-2.37.0}/tests/unit/test_notebook.py +0 -0
  1473. {bigframes-2.35.0 → bigframes-2.37.0}/tests/unit/test_pandas.py +0 -0
  1474. {bigframes-2.35.0 → bigframes-2.37.0}/tests/unit/test_sequences.py +0 -0
  1475. {bigframes-2.35.0 → bigframes-2.37.0}/tests/unit/test_series.py +0 -0
  1476. {bigframes-2.35.0 → bigframes-2.37.0}/tests/unit/test_series_io.py +0 -0
  1477. {bigframes-2.35.0 → bigframes-2.37.0}/tests/unit/test_series_struct.py +0 -0
  1478. {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/__init__.py +0 -0
  1479. {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/constants.py +0 -0
  1480. {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/cpython/LICENSE +0 -0
  1481. {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/cpython/__init__.py +0 -0
  1482. {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/cpython/_pprint.py +0 -0
  1483. {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/db_benchmark/LICENSE +0 -0
  1484. {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/db_benchmark/METADATA +0 -0
  1485. {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/db_benchmark/README.md +0 -0
  1486. {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/db_benchmark/__init__.py +0 -0
  1487. {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/db_benchmark/groupby_queries.py +0 -0
  1488. {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/db_benchmark/join_queries.py +0 -0
  1489. {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/db_benchmark/sort_queries.py +0 -0
  1490. {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/geopandas/LICENSE.txt +0 -0
  1491. {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/geopandas/geoseries.py +0 -0
  1492. {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/google_cloud_bigquery/LICENSE +0 -0
  1493. {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/google_cloud_bigquery/__init__.py +0 -0
  1494. {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/google_cloud_bigquery/_pandas_helpers.py +0 -0
  1495. {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/google_cloud_bigquery/retry.py +0 -0
  1496. {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/google_cloud_bigquery/tests/__init__.py +0 -0
  1497. {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/google_cloud_bigquery/tests/unit/__init__.py +0 -0
  1498. {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/google_cloud_bigquery/tests/unit/test_pandas_helpers.py +0 -0
  1499. {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/ibis/LICENSE.txt +0 -0
  1500. {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/ibis/README.md +0 -0
  1501. {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/ibis/__init__.py +0 -0
  1502. {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/ibis/backends/__init__.py +0 -0
  1503. {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/ibis/backends/bigquery/__init__.py +0 -0
  1504. {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/ibis/backends/bigquery/backend.py +0 -0
  1505. {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/ibis/backends/bigquery/client.py +0 -0
  1506. {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/ibis/backends/bigquery/converter.py +0 -0
  1507. {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/ibis/backends/bigquery/datatypes.py +0 -0
  1508. {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/ibis/backends/bigquery/udf/__init__.py +0 -0
  1509. {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/ibis/backends/bigquery/udf/core.py +0 -0
  1510. {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/ibis/backends/bigquery/udf/find.py +0 -0
  1511. {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/ibis/backends/bigquery/udf/rewrite.py +0 -0
  1512. {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/ibis/backends/sql/__init__.py +0 -0
  1513. {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/ibis/backends/sql/compilers/__init__.py +0 -0
  1514. {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/ibis/backends/sql/compilers/base.py +0 -0
  1515. {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/ibis/backends/sql/compilers/bigquery/__init__.py +0 -0
  1516. {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/ibis/backends/sql/datatypes.py +0 -0
  1517. {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/ibis/backends/sql/rewrites.py +0 -0
  1518. {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/ibis/common/__init__.py +0 -0
  1519. {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/ibis/common/annotations.py +0 -0
  1520. {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/ibis/common/bases.py +0 -0
  1521. {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/ibis/common/caching.py +0 -0
  1522. {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/ibis/common/collections.py +0 -0
  1523. {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/ibis/common/deferred.py +0 -0
  1524. {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/ibis/common/dispatch.py +0 -0
  1525. {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/ibis/common/egraph.py +0 -0
  1526. {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/ibis/common/exceptions.py +0 -0
  1527. {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/ibis/common/graph.py +0 -0
  1528. {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/ibis/common/grounds.py +0 -0
  1529. {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/ibis/common/numeric.py +0 -0
  1530. {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/ibis/common/patterns.py +0 -0
  1531. {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/ibis/common/selectors.py +0 -0
  1532. {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/ibis/common/temporal.py +0 -0
  1533. {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/ibis/common/typing.py +0 -0
  1534. {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/ibis/config.py +0 -0
  1535. {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/ibis/expr/__init__.py +0 -0
  1536. {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/ibis/expr/api.py +0 -0
  1537. {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/ibis/expr/builders.py +0 -0
  1538. {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/ibis/expr/datashape.py +0 -0
  1539. {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/ibis/expr/datatypes/__init__.py +0 -0
  1540. {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/ibis/expr/datatypes/cast.py +0 -0
  1541. {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/ibis/expr/datatypes/core.py +0 -0
  1542. {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/ibis/expr/datatypes/value.py +0 -0
  1543. {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/ibis/expr/decompile.py +0 -0
  1544. {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/ibis/expr/format.py +0 -0
  1545. {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/ibis/expr/operations/__init__.py +0 -0
  1546. {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/ibis/expr/operations/ai_ops.py +0 -0
  1547. {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/ibis/expr/operations/analytic.py +0 -0
  1548. {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/ibis/expr/operations/arrays.py +0 -0
  1549. {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/ibis/expr/operations/core.py +0 -0
  1550. {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/ibis/expr/operations/generic.py +0 -0
  1551. {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/ibis/expr/operations/geospatial.py +0 -0
  1552. {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/ibis/expr/operations/histograms.py +0 -0
  1553. {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/ibis/expr/operations/json.py +0 -0
  1554. {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/ibis/expr/operations/logical.py +0 -0
  1555. {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/ibis/expr/operations/maps.py +0 -0
  1556. {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/ibis/expr/operations/reductions.py +0 -0
  1557. {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/ibis/expr/operations/relations.py +0 -0
  1558. {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/ibis/expr/operations/sortkeys.py +0 -0
  1559. {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/ibis/expr/operations/strings.py +0 -0
  1560. {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/ibis/expr/operations/structs.py +0 -0
  1561. {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/ibis/expr/operations/subqueries.py +0 -0
  1562. {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/ibis/expr/operations/temporal.py +0 -0
  1563. {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/ibis/expr/operations/udf.py +0 -0
  1564. {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/ibis/expr/operations/window.py +0 -0
  1565. {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/ibis/expr/rewrites.py +0 -0
  1566. {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/ibis/expr/rules.py +0 -0
  1567. {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/ibis/expr/schema.py +0 -0
  1568. {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/ibis/expr/sql.py +0 -0
  1569. {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/ibis/expr/types/__init__.py +0 -0
  1570. {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/ibis/expr/types/arrays.py +0 -0
  1571. {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/ibis/expr/types/binary.py +0 -0
  1572. {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/ibis/expr/types/core.py +0 -0
  1573. {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/ibis/expr/types/dataframe_interchange.py +0 -0
  1574. {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/ibis/expr/types/generic.py +0 -0
  1575. {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/ibis/expr/types/geospatial.py +0 -0
  1576. {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/ibis/expr/types/groupby.py +0 -0
  1577. {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/ibis/expr/types/joins.py +0 -0
  1578. {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/ibis/expr/types/json.py +0 -0
  1579. {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/ibis/expr/types/logical.py +0 -0
  1580. {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/ibis/expr/types/maps.py +0 -0
  1581. {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/ibis/expr/types/numeric.py +0 -0
  1582. {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/ibis/expr/types/pretty.py +0 -0
  1583. {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/ibis/expr/types/relations.py +0 -0
  1584. {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/ibis/expr/types/strings.py +0 -0
  1585. {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/ibis/expr/types/structs.py +0 -0
  1586. {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/ibis/expr/types/temporal.py +0 -0
  1587. {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/ibis/expr/types/temporal_windows.py +0 -0
  1588. {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/ibis/expr/types/typing.py +0 -0
  1589. {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/ibis/expr/types/uuid.py +0 -0
  1590. {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/ibis/expr/visualize.py +0 -0
  1591. {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/ibis/formats/__init__.py +0 -0
  1592. {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/ibis/formats/numpy.py +0 -0
  1593. {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/ibis/formats/pandas.py +0 -0
  1594. {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/ibis/formats/polars.py +0 -0
  1595. {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/ibis/formats/pyarrow.py +0 -0
  1596. {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/ibis/selectors.py +0 -0
  1597. {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/ibis/util.py +0 -0
  1598. {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/pandas/AUTHORS.md +0 -0
  1599. {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/pandas/LICENSE +0 -0
  1600. {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/pandas/README.md +0 -0
  1601. {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/pandas/__init__.py +0 -0
  1602. {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/pandas/_config/config.py +0 -0
  1603. {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/pandas/core/arrays/__init__.py +0 -0
  1604. {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/pandas/core/arrays/arrow/__init__.py +0 -0
  1605. {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/pandas/core/arrays/arrow/accessors.py +0 -0
  1606. {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/pandas/core/arrays/datetimelike.py +0 -0
  1607. {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/pandas/core/col.py +0 -0
  1608. {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/pandas/core/common.py +0 -0
  1609. {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/pandas/core/computation/common.py +0 -0
  1610. {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/pandas/core/computation/engines.py +0 -0
  1611. {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/pandas/core/computation/expr.py +0 -0
  1612. {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/pandas/core/computation/ops.py +0 -0
  1613. {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/pandas/core/computation/parsing.py +0 -0
  1614. {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/pandas/core/computation/scope.py +0 -0
  1615. {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/pandas/core/dtypes/inference.py +0 -0
  1616. {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/pandas/core/groupby/__init__.py +0 -0
  1617. {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/pandas/core/indexes/__init__.py +0 -0
  1618. {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/pandas/core/indexes/base.py +0 -0
  1619. {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/pandas/core/indexes/datetimes.py +0 -0
  1620. {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/pandas/core/indexes/multi.py +0 -0
  1621. {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/pandas/core/indexing.py +0 -0
  1622. {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/pandas/core/reshape/__init__.py +0 -0
  1623. {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/pandas/core/reshape/concat.py +0 -0
  1624. {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/pandas/core/reshape/encoding.py +0 -0
  1625. {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/pandas/core/reshape/merge.py +0 -0
  1626. {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/pandas/core/reshape/pivot.py +0 -0
  1627. {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/pandas/core/reshape/tile.py +0 -0
  1628. {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/pandas/core/strings/accessor.py +0 -0
  1629. {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/pandas/core/tools/__init__.py +0 -0
  1630. {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/pandas/core/tools/datetimes.py +0 -0
  1631. {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/pandas/core/tools/timedeltas.py +0 -0
  1632. {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/pandas/core/window/__init__.py +0 -0
  1633. {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/pandas/core/window/rolling.py +0 -0
  1634. {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/pandas/io/__init__.py +0 -0
  1635. {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/pandas/io/common.py +0 -0
  1636. {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/pandas/io/gbq.py +0 -0
  1637. {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/pandas/io/parquet.py +0 -0
  1638. {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/pandas/io/parsers/__init__.py +0 -0
  1639. {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/pandas/io/parsers/readers.py +0 -0
  1640. {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/pandas/io/pickle.py +0 -0
  1641. {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/pandas/pandas/_typing.py +0 -0
  1642. {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/pandas/plotting/_core.py +0 -0
  1643. {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/pandas/util/_exceptions.py +0 -0
  1644. {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/pandas/util/_validators.py +0 -0
  1645. {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/py.typed +0 -0
  1646. {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/sklearn/COPYING +0 -0
  1647. {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/sklearn/__init__.py +0 -0
  1648. {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/sklearn/base.py +0 -0
  1649. {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/sklearn/cluster/_kmeans.py +0 -0
  1650. {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/sklearn/compose/_column_transformer.py +0 -0
  1651. {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/sklearn/decomposition/_mf.py +0 -0
  1652. {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/sklearn/decomposition/_pca.py +0 -0
  1653. {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/sklearn/ensemble/__init__.py +0 -0
  1654. {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/sklearn/ensemble/_forest.py +0 -0
  1655. {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/sklearn/impute/_base.py +0 -0
  1656. {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/sklearn/linear_model/_base.py +0 -0
  1657. {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/sklearn/linear_model/_logistic.py +0 -0
  1658. {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/sklearn/metrics/_ranking.py +0 -0
  1659. {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/sklearn/metrics/_regression.py +0 -0
  1660. {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/sklearn/metrics/pairwise.py +0 -0
  1661. {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/sklearn/model_selection/_split.py +0 -0
  1662. {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/sklearn/model_selection/_validation.py +0 -0
  1663. {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/sklearn/pipeline.py +0 -0
  1664. {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/sklearn/preprocessing/_data.py +0 -0
  1665. {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/sklearn/preprocessing/_discretization.py +0 -0
  1666. {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/sklearn/preprocessing/_label.py +0 -0
  1667. {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/sklearn/preprocessing/_polynomial.py +0 -0
  1668. {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/sqlglot/LICENSE +0 -0
  1669. {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/sqlglot/__init__.py +0 -0
  1670. {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/sqlglot/dialects/__init__.py +0 -0
  1671. {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/sqlglot/dialects/bigquery.py +0 -0
  1672. {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/sqlglot/dialects/dialect.py +0 -0
  1673. {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/sqlglot/diff.py +0 -0
  1674. {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/sqlglot/errors.py +0 -0
  1675. {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/sqlglot/expressions.py +0 -0
  1676. {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/sqlglot/helper.py +0 -0
  1677. {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/sqlglot/jsonpath.py +0 -0
  1678. {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/sqlglot/lineage.py +0 -0
  1679. {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/sqlglot/optimizer/__init__.py +0 -0
  1680. {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/sqlglot/optimizer/annotate_types.py +0 -0
  1681. {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/sqlglot/optimizer/canonicalize.py +0 -0
  1682. {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/sqlglot/optimizer/eliminate_ctes.py +0 -0
  1683. {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/sqlglot/optimizer/eliminate_joins.py +0 -0
  1684. {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/sqlglot/optimizer/eliminate_subqueries.py +0 -0
  1685. {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/sqlglot/optimizer/isolate_table_selects.py +0 -0
  1686. {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/sqlglot/optimizer/merge_subqueries.py +0 -0
  1687. {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/sqlglot/optimizer/normalize.py +0 -0
  1688. {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/sqlglot/optimizer/normalize_identifiers.py +0 -0
  1689. {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/sqlglot/optimizer/optimize_joins.py +0 -0
  1690. {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/sqlglot/optimizer/optimizer.py +0 -0
  1691. {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/sqlglot/optimizer/pushdown_predicates.py +0 -0
  1692. {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/sqlglot/optimizer/pushdown_projections.py +0 -0
  1693. {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/sqlglot/optimizer/qualify.py +0 -0
  1694. {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/sqlglot/optimizer/qualify_columns.py +0 -0
  1695. {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/sqlglot/optimizer/qualify_tables.py +0 -0
  1696. {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/sqlglot/optimizer/resolver.py +0 -0
  1697. {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/sqlglot/optimizer/scope.py +0 -0
  1698. {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/sqlglot/optimizer/simplify.py +0 -0
  1699. {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/sqlglot/optimizer/unnest_subqueries.py +0 -0
  1700. {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/sqlglot/parser.py +0 -0
  1701. {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/sqlglot/planner.py +0 -0
  1702. {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/sqlglot/py.typed +0 -0
  1703. {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/sqlglot/schema.py +0 -0
  1704. {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/sqlglot/serde.py +0 -0
  1705. {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/sqlglot/time.py +0 -0
  1706. {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/sqlglot/tokens.py +0 -0
  1707. {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/sqlglot/transforms.py +0 -0
  1708. {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/sqlglot/trie.py +0 -0
  1709. {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/sqlglot/typing/__init__.py +0 -0
  1710. {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/sqlglot/typing/bigquery.py +0 -0
  1711. {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/tpch/LICENSE +0 -0
  1712. {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/tpch/METADATA +0 -0
  1713. {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/tpch/README.md +0 -0
  1714. {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/tpch/TPC-EULA.txt +0 -0
  1715. {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/tpch/__init__.py +0 -0
  1716. {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/tpch/queries/__init__.py +0 -0
  1717. {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/tpch/queries/q1.py +0 -0
  1718. {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/tpch/queries/q10.py +0 -0
  1719. {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/tpch/queries/q11.py +0 -0
  1720. {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/tpch/queries/q12.py +0 -0
  1721. {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/tpch/queries/q13.py +0 -0
  1722. {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/tpch/queries/q14.py +0 -0
  1723. {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/tpch/queries/q15.py +0 -0
  1724. {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/tpch/queries/q16.py +0 -0
  1725. {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/tpch/queries/q17.py +0 -0
  1726. {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/tpch/queries/q18.py +0 -0
  1727. {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/tpch/queries/q19.py +0 -0
  1728. {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/tpch/queries/q2.py +0 -0
  1729. {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/tpch/queries/q20.py +0 -0
  1730. {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/tpch/queries/q21.py +0 -0
  1731. {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/tpch/queries/q22.py +0 -0
  1732. {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/tpch/queries/q3.py +0 -0
  1733. {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/tpch/queries/q4.py +0 -0
  1734. {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/tpch/queries/q5.py +0 -0
  1735. {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/tpch/queries/q6.py +0 -0
  1736. {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/tpch/queries/q7.py +0 -0
  1737. {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/tpch/queries/q8.py +0 -0
  1738. {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/tpch/queries/q9.py +0 -0
  1739. {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/tpch/sql_queries/q1.sql +0 -0
  1740. {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/tpch/sql_queries/q10.sql +0 -0
  1741. {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/tpch/sql_queries/q11.sql +0 -0
  1742. {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/tpch/sql_queries/q12.sql +0 -0
  1743. {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/tpch/sql_queries/q13.sql +0 -0
  1744. {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/tpch/sql_queries/q14.sql +0 -0
  1745. {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/tpch/sql_queries/q15.sql +0 -0
  1746. {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/tpch/sql_queries/q16.sql +0 -0
  1747. {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/tpch/sql_queries/q17.sql +0 -0
  1748. {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/tpch/sql_queries/q18.sql +0 -0
  1749. {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/tpch/sql_queries/q19.sql +0 -0
  1750. {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/tpch/sql_queries/q2.sql +0 -0
  1751. {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/tpch/sql_queries/q20.sql +0 -0
  1752. {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/tpch/sql_queries/q21.sql +0 -0
  1753. {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/tpch/sql_queries/q22.sql +0 -0
  1754. {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/tpch/sql_queries/q3.sql +0 -0
  1755. {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/tpch/sql_queries/q4.sql +0 -0
  1756. {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/tpch/sql_queries/q5.sql +0 -0
  1757. {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/tpch/sql_queries/q6.sql +0 -0
  1758. {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/tpch/sql_queries/q7.sql +0 -0
  1759. {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/tpch/sql_queries/q8.sql +0 -0
  1760. {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/tpch/sql_queries/q9.sql +0 -0
  1761. {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/xgboost/LICENSE +0 -0
  1762. {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/xgboost/__init__.py +0 -0
  1763. {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/xgboost/sklearn.py +0 -0
@@ -0,0 +1,198 @@
1
+ Metadata-Version: 2.4
2
+ Name: bigframes
3
+ Version: 2.37.0
4
+ Summary: BigQuery DataFrames -- scalable analytics and machine learning with BigQuery
5
+ Home-page: https://dataframes.bigquery.dev
6
+ Download-URL: https://github.com/googleapis/python-bigquery-dataframes/releases
7
+ Author: Google LLC
8
+ Author-email: bigframes-feedback@google.com
9
+ License: Apache 2.0
10
+ Project-URL: Source, https://github.com/googleapis/python-bigquery-dataframes
11
+ Project-URL: Changelog, https://dataframes.bigquery.dev/changelog.html
12
+ Project-URL: Issues, https://github.com/googleapis/python-bigquery-dataframes/issues
13
+ Platform: Posix; MacOS X; Windows
14
+ Classifier: Development Status :: 5 - Production/Stable
15
+ Classifier: Intended Audience :: Developers
16
+ Classifier: License :: OSI Approved :: Apache Software License
17
+ Classifier: Programming Language :: Python
18
+ Classifier: Programming Language :: Python :: 3
19
+ Classifier: Programming Language :: Python :: 3.10
20
+ Classifier: Programming Language :: Python :: 3.11
21
+ Classifier: Programming Language :: Python :: 3.12
22
+ Classifier: Programming Language :: Python :: 3.13
23
+ Classifier: Programming Language :: Python :: 3.14
24
+ Classifier: Operating System :: OS Independent
25
+ Classifier: Topic :: Internet
26
+ Requires-Python: >=3.10
27
+ Description-Content-Type: text/x-rst
28
+ License-File: LICENSE
29
+ Requires-Dist: cloudpickle>=2.0.0
30
+ Requires-Dist: fsspec>=2023.3.0
31
+ Requires-Dist: gcsfs!=2025.5.0,!=2026.2.0,>=2023.3.0
32
+ Requires-Dist: geopandas>=0.12.2
33
+ Requires-Dist: google-auth<3.0,>=2.15.0
34
+ Requires-Dist: google-cloud-bigquery[bqstorage,pandas]>=3.36.0
35
+ Requires-Dist: google-cloud-bigquery-storage<3.0.0,>=2.30.0
36
+ Requires-Dist: google-cloud-functions>=1.12.0
37
+ Requires-Dist: google-cloud-bigquery-connection>=1.12.0
38
+ Requires-Dist: google-cloud-resource-manager>=1.10.3
39
+ Requires-Dist: google-cloud-storage>=2.0.0
40
+ Requires-Dist: grpc-google-iam-v1>=0.14.2
41
+ Requires-Dist: numpy>=1.24.0
42
+ Requires-Dist: pandas>=1.5.3
43
+ Requires-Dist: pandas-gbq>=0.26.1
44
+ Requires-Dist: pyarrow>=15.0.2
45
+ Requires-Dist: pydata-google-auth>=1.8.2
46
+ Requires-Dist: requests>=2.27.1
47
+ Requires-Dist: shapely>=1.8.5
48
+ Requires-Dist: tabulate>=0.9
49
+ Requires-Dist: humanize>=4.6.0
50
+ Requires-Dist: matplotlib>=3.7.1
51
+ Requires-Dist: db-dtypes>=1.4.2
52
+ Requires-Dist: pyiceberg>=0.7.1
53
+ Requires-Dist: atpublic<6,>=2.3
54
+ Requires-Dist: python-dateutil<3,>=2.8.2
55
+ Requires-Dist: pytz>=2022.7
56
+ Requires-Dist: toolz<2,>=0.11
57
+ Requires-Dist: typing-extensions<5,>=4.5.0
58
+ Requires-Dist: rich<14,>=12.4.4
59
+ Provides-Extra: tests
60
+ Requires-Dist: freezegun; extra == "tests"
61
+ Requires-Dist: pytest-snapshot; extra == "tests"
62
+ Requires-Dist: google-cloud-bigtable>=2.24.0; extra == "tests"
63
+ Requires-Dist: google-cloud-pubsub>=2.21.4; extra == "tests"
64
+ Provides-Extra: polars
65
+ Requires-Dist: polars>=1.21.0; extra == "polars"
66
+ Provides-Extra: scikit-learn
67
+ Requires-Dist: scikit-learn>=1.2.2; extra == "scikit-learn"
68
+ Provides-Extra: dev
69
+ Requires-Dist: pytest; extra == "dev"
70
+ Requires-Dist: pre-commit; extra == "dev"
71
+ Requires-Dist: nox; extra == "dev"
72
+ Requires-Dist: google-cloud-testutils; extra == "dev"
73
+ Provides-Extra: anywidget
74
+ Requires-Dist: anywidget>=0.9.18; extra == "anywidget"
75
+ Requires-Dist: traitlets>=5.0.0; extra == "anywidget"
76
+ Provides-Extra: all
77
+ Requires-Dist: anywidget>=0.9.18; extra == "all"
78
+ Requires-Dist: freezegun; extra == "all"
79
+ Requires-Dist: google-cloud-bigtable>=2.24.0; extra == "all"
80
+ Requires-Dist: google-cloud-pubsub>=2.21.4; extra == "all"
81
+ Requires-Dist: google-cloud-testutils; extra == "all"
82
+ Requires-Dist: nox; extra == "all"
83
+ Requires-Dist: polars>=1.21.0; extra == "all"
84
+ Requires-Dist: pre-commit; extra == "all"
85
+ Requires-Dist: pytest; extra == "all"
86
+ Requires-Dist: pytest-snapshot; extra == "all"
87
+ Requires-Dist: scikit-learn>=1.2.2; extra == "all"
88
+ Requires-Dist: traitlets>=5.0.0; extra == "all"
89
+ Dynamic: author
90
+ Dynamic: author-email
91
+ Dynamic: classifier
92
+ Dynamic: description
93
+ Dynamic: description-content-type
94
+ Dynamic: download-url
95
+ Dynamic: home-page
96
+ Dynamic: license
97
+ Dynamic: license-file
98
+ Dynamic: platform
99
+ Dynamic: project-url
100
+ Dynamic: provides-extra
101
+ Dynamic: requires-dist
102
+ Dynamic: requires-python
103
+ Dynamic: summary
104
+
105
+ BigQuery DataFrames (BigFrames)
106
+ ===============================
107
+
108
+
109
+ |GA| |pypi| |versions|
110
+
111
+ BigQuery DataFrames (also known as BigFrames) provides a Pythonic DataFrame
112
+ and machine learning (ML) API powered by the BigQuery engine. It provides modules
113
+ for many use cases, including:
114
+
115
+ * `bigframes.pandas <https://dataframes.bigquery.dev/reference/api/bigframes.pandas.html>`_
116
+ is a pandas API for analytics. Many workloads can be
117
+ migrated from pandas to bigframes by just changing a few imports.
118
+ * `bigframes.ml <https://dataframes.bigquery.dev/reference/index.html#ml-apis>`_
119
+ is a scikit-learn-like API for ML.
120
+ * `bigframes.bigquery.ai <https://dataframes.bigquery.dev/reference/api/bigframes.bigquery.ai.html>`_
121
+ are a collection of powerful AI methods, powered by Gemini.
122
+
123
+ BigQuery DataFrames is an `open-source package <https://github.com/googleapis/python-bigquery-dataframes>`_.
124
+
125
+ .. |GA| image:: https://img.shields.io/badge/support-GA-gold.svg
126
+ :target: https://github.com/googleapis/google-cloud-python/blob/main/README.rst#general-availability
127
+ .. |pypi| image:: https://img.shields.io/pypi/v/bigframes.svg
128
+ :target: https://pypi.org/project/bigframes/
129
+ .. |versions| image:: https://img.shields.io/pypi/pyversions/bigframes.svg
130
+ :target: https://pypi.org/project/bigframes/
131
+
132
+ Getting started with BigQuery DataFrames
133
+ ----------------------------------------
134
+
135
+ The easiest way to get started is to try the
136
+ `BigFrames quickstart <https://cloud.google.com/bigquery/docs/dataframes-quickstart>`_
137
+ in a `notebook in BigQuery Studio <https://cloud.google.com/bigquery/docs/notebooks-introduction>`_.
138
+
139
+ To use BigFrames in your local development environment,
140
+
141
+ 1. Run ``pip install --upgrade bigframes`` to install the latest version.
142
+
143
+ 2. Setup `Application default credentials <https://cloud.google.com/docs/authentication/set-up-adc-local-dev-environment>`_
144
+ for your local development environment enviroment.
145
+
146
+ 3. Create a `GCP project with the BigQuery API enabled <https://cloud.google.com/bigquery/docs/sandbox>`_.
147
+
148
+ 4. Use the ``bigframes`` package to query data.
149
+
150
+ .. code-block:: python
151
+
152
+ import bigframes.pandas as bpd
153
+
154
+ bpd.options.bigquery.project = your_gcp_project_id # Optional in BQ Studio.
155
+ bpd.options.bigquery.ordering_mode = "partial" # Recommended for performance.
156
+ df = bpd.read_gbq("bigquery-public-data.usa_names.usa_1910_2013")
157
+ print(
158
+ df.groupby("name")
159
+ .agg({"number": "sum"})
160
+ .sort_values("number", ascending=False)
161
+ .head(10)
162
+ .to_pandas()
163
+ )
164
+
165
+ Documentation
166
+ -------------
167
+
168
+ To learn more about BigQuery DataFrames, visit these pages
169
+
170
+ * `Introduction to BigQuery DataFrames (BigFrames) <https://cloud.google.com/bigquery/docs/bigquery-dataframes-introduction>`_
171
+ * `Sample notebooks <https://github.com/googleapis/python-bigquery-dataframes/tree/main/notebooks>`_
172
+ * `API reference <https://dataframes.bigquery.dev/>`_
173
+ * `Source code (GitHub) <https://github.com/googleapis/python-bigquery-dataframes>`_
174
+
175
+ License
176
+ -------
177
+
178
+ BigQuery DataFrames is distributed with the `Apache-2.0 license
179
+ <https://github.com/googleapis/python-bigquery-dataframes/blob/main/LICENSE>`_.
180
+
181
+ It also contains code derived from the following third-party packages:
182
+
183
+ * `Ibis <https://ibis-project.org/>`_
184
+ * `pandas <https://pandas.pydata.org/>`_
185
+ * `Python <https://www.python.org/>`_
186
+ * `scikit-learn <https://scikit-learn.org/>`_
187
+ * `XGBoost <https://xgboost.readthedocs.io/en/stable/>`_
188
+ * `SQLGlot <https://sqlglot.com/sqlglot.html>`_
189
+
190
+ For details, see the `third_party
191
+ <https://github.com/googleapis/python-bigquery-dataframes/tree/main/third_party/bigframes_vendored>`_
192
+ directory.
193
+
194
+
195
+ Contact Us
196
+ ----------
197
+
198
+ For further help and provide feedback, you can email us at `bigframes-feedback@google.com <https://mail.google.com/mail/?view=cm&fs=1&tf=1&to=bigframes-feedback@google.com>`_.
@@ -0,0 +1,94 @@
1
+ BigQuery DataFrames (BigFrames)
2
+ ===============================
3
+
4
+
5
+ |GA| |pypi| |versions|
6
+
7
+ BigQuery DataFrames (also known as BigFrames) provides a Pythonic DataFrame
8
+ and machine learning (ML) API powered by the BigQuery engine. It provides modules
9
+ for many use cases, including:
10
+
11
+ * `bigframes.pandas <https://dataframes.bigquery.dev/reference/api/bigframes.pandas.html>`_
12
+ is a pandas API for analytics. Many workloads can be
13
+ migrated from pandas to bigframes by just changing a few imports.
14
+ * `bigframes.ml <https://dataframes.bigquery.dev/reference/index.html#ml-apis>`_
15
+ is a scikit-learn-like API for ML.
16
+ * `bigframes.bigquery.ai <https://dataframes.bigquery.dev/reference/api/bigframes.bigquery.ai.html>`_
17
+ are a collection of powerful AI methods, powered by Gemini.
18
+
19
+ BigQuery DataFrames is an `open-source package <https://github.com/googleapis/python-bigquery-dataframes>`_.
20
+
21
+ .. |GA| image:: https://img.shields.io/badge/support-GA-gold.svg
22
+ :target: https://github.com/googleapis/google-cloud-python/blob/main/README.rst#general-availability
23
+ .. |pypi| image:: https://img.shields.io/pypi/v/bigframes.svg
24
+ :target: https://pypi.org/project/bigframes/
25
+ .. |versions| image:: https://img.shields.io/pypi/pyversions/bigframes.svg
26
+ :target: https://pypi.org/project/bigframes/
27
+
28
+ Getting started with BigQuery DataFrames
29
+ ----------------------------------------
30
+
31
+ The easiest way to get started is to try the
32
+ `BigFrames quickstart <https://cloud.google.com/bigquery/docs/dataframes-quickstart>`_
33
+ in a `notebook in BigQuery Studio <https://cloud.google.com/bigquery/docs/notebooks-introduction>`_.
34
+
35
+ To use BigFrames in your local development environment,
36
+
37
+ 1. Run ``pip install --upgrade bigframes`` to install the latest version.
38
+
39
+ 2. Setup `Application default credentials <https://cloud.google.com/docs/authentication/set-up-adc-local-dev-environment>`_
40
+ for your local development environment enviroment.
41
+
42
+ 3. Create a `GCP project with the BigQuery API enabled <https://cloud.google.com/bigquery/docs/sandbox>`_.
43
+
44
+ 4. Use the ``bigframes`` package to query data.
45
+
46
+ .. code-block:: python
47
+
48
+ import bigframes.pandas as bpd
49
+
50
+ bpd.options.bigquery.project = your_gcp_project_id # Optional in BQ Studio.
51
+ bpd.options.bigquery.ordering_mode = "partial" # Recommended for performance.
52
+ df = bpd.read_gbq("bigquery-public-data.usa_names.usa_1910_2013")
53
+ print(
54
+ df.groupby("name")
55
+ .agg({"number": "sum"})
56
+ .sort_values("number", ascending=False)
57
+ .head(10)
58
+ .to_pandas()
59
+ )
60
+
61
+ Documentation
62
+ -------------
63
+
64
+ To learn more about BigQuery DataFrames, visit these pages
65
+
66
+ * `Introduction to BigQuery DataFrames (BigFrames) <https://cloud.google.com/bigquery/docs/bigquery-dataframes-introduction>`_
67
+ * `Sample notebooks <https://github.com/googleapis/python-bigquery-dataframes/tree/main/notebooks>`_
68
+ * `API reference <https://dataframes.bigquery.dev/>`_
69
+ * `Source code (GitHub) <https://github.com/googleapis/python-bigquery-dataframes>`_
70
+
71
+ License
72
+ -------
73
+
74
+ BigQuery DataFrames is distributed with the `Apache-2.0 license
75
+ <https://github.com/googleapis/python-bigquery-dataframes/blob/main/LICENSE>`_.
76
+
77
+ It also contains code derived from the following third-party packages:
78
+
79
+ * `Ibis <https://ibis-project.org/>`_
80
+ * `pandas <https://pandas.pydata.org/>`_
81
+ * `Python <https://www.python.org/>`_
82
+ * `scikit-learn <https://scikit-learn.org/>`_
83
+ * `XGBoost <https://xgboost.readthedocs.io/en/stable/>`_
84
+ * `SQLGlot <https://sqlglot.com/sqlglot.html>`_
85
+
86
+ For details, see the `third_party
87
+ <https://github.com/googleapis/python-bigquery-dataframes/tree/main/third_party/bigframes_vendored>`_
88
+ directory.
89
+
90
+
91
+ Contact Us
92
+ ----------
93
+
94
+ For further help and provide feedback, you can email us at `bigframes-feedback@google.com <https://mail.google.com/mail/?view=cm&fs=1&tf=1&to=bigframes-feedback@google.com>`_.
@@ -0,0 +1,57 @@
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
+ import threading
18
+ from typing import Optional
19
+
20
+ import google.auth.credentials
21
+ import google.auth.transport.requests
22
+ import pydata_google_auth
23
+
24
+ _SCOPES = ["https://www.googleapis.com/auth/cloud-platform"]
25
+
26
+ # Put the lock here rather than in BigQueryOptions so that BigQueryOptions
27
+ # remains deepcopy-able.
28
+ _AUTH_LOCK = threading.Lock()
29
+ _cached_credentials: Optional[google.auth.credentials.Credentials] = None
30
+ _cached_project_default: Optional[str] = None
31
+
32
+
33
+ def get_default_credentials_with_project() -> (
34
+ tuple[google.auth.credentials.Credentials, Optional[str]]
35
+ ):
36
+ global _AUTH_LOCK, _cached_credentials, _cached_project_default
37
+
38
+ with _AUTH_LOCK:
39
+ if _cached_credentials is not None:
40
+ return _cached_credentials, _cached_project_default
41
+
42
+ _cached_credentials, _cached_project_default = pydata_google_auth.default(
43
+ scopes=_SCOPES, use_local_webserver=False
44
+ )
45
+
46
+ # Ensure an access token is available.
47
+ _cached_credentials.refresh(google.auth.transport.requests.Request())
48
+
49
+ return _cached_credentials, _cached_project_default
50
+
51
+
52
+ def reset_default_credentials_and_project():
53
+ global _AUTH_LOCK, _cached_credentials, _cached_project_default
54
+
55
+ with _AUTH_LOCK:
56
+ _cached_credentials = None
57
+ _cached_project_default = None