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