bigframes 2.35.0__tar.gz → 2.37.0__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- bigframes-2.37.0/PKG-INFO +198 -0
- bigframes-2.37.0/README.rst +94 -0
- bigframes-2.37.0/bigframes/_config/auth.py +57 -0
- bigframes-2.37.0/bigframes/_config/bigquery_options.py +505 -0
- bigframes-2.37.0/bigframes/_config/compute_options.py +215 -0
- bigframes-2.37.0/bigframes/_config/experiment_options.py +168 -0
- bigframes-2.37.0/bigframes/_config/sampling_options.py +138 -0
- bigframes-2.37.0/bigframes/_tools/docs.py +39 -0
- bigframes-2.37.0/bigframes/bigquery/_operations/ai.py +1041 -0
- bigframes-2.37.0/bigframes/bigquery/_operations/sql.py +90 -0
- bigframes-2.37.0/bigframes/bigquery/ai.py +45 -0
- bigframes-2.37.0/bigframes/core/array_value.py +638 -0
- bigframes-2.37.0/bigframes/core/block_transforms.py +894 -0
- bigframes-2.37.0/bigframes/core/blocks.py +3504 -0
- bigframes-2.37.0/bigframes/core/bq_data.py +407 -0
- bigframes-2.37.0/bigframes/core/col.py +155 -0
- bigframes-2.37.0/bigframes/core/compile/compiled.py +518 -0
- bigframes-2.37.0/bigframes/core/compile/ibis_compiler/ibis_compiler.py +294 -0
- bigframes-2.37.0/bigframes/core/compile/ibis_compiler/scalar_op_registry.py +2189 -0
- bigframes-2.37.0/bigframes/core/compile/polars/lowering.py +508 -0
- bigframes-2.37.0/bigframes/core/compile/sqlglot/aggregate_compiler.py +76 -0
- bigframes-2.37.0/bigframes/core/compile/sqlglot/aggregations/binary_compiler.py +60 -0
- bigframes-2.37.0/bigframes/core/compile/sqlglot/aggregations/nullary_compiler.py +55 -0
- bigframes-2.37.0/bigframes/core/compile/sqlglot/aggregations/unary_compiler.py +626 -0
- bigframes-2.37.0/bigframes/core/compile/sqlglot/aggregations/windows.py +205 -0
- bigframes-2.37.0/bigframes/core/compile/sqlglot/compiler.py +337 -0
- bigframes-2.37.0/bigframes/core/compile/sqlglot/expression_compiler.py +231 -0
- bigframes-2.37.0/bigframes/core/compile/sqlglot/expressions/ai_ops.py +148 -0
- bigframes-2.37.0/bigframes/core/compile/sqlglot/expressions/array_ops.py +155 -0
- bigframes-2.37.0/bigframes/core/compile/sqlglot/expressions/blob_ops.py +52 -0
- bigframes-2.37.0/bigframes/core/compile/sqlglot/expressions/bool_ops.py +85 -0
- bigframes-2.37.0/bigframes/core/compile/sqlglot/expressions/common.py +33 -0
- bigframes-2.37.0/bigframes/core/compile/sqlglot/expressions/comparison_ops.py +169 -0
- bigframes-2.37.0/bigframes/core/compile/sqlglot/expressions/date_ops.py +72 -0
- bigframes-2.37.0/bigframes/core/compile/sqlglot/expressions/datetime_ops.py +673 -0
- bigframes-2.37.0/bigframes/core/compile/sqlglot/expressions/generic_ops.py +339 -0
- bigframes-2.37.0/bigframes/core/compile/sqlglot/expressions/geo_ops.py +131 -0
- bigframes-2.37.0/bigframes/core/compile/sqlglot/expressions/json_ops.py +84 -0
- bigframes-2.37.0/bigframes/core/compile/sqlglot/expressions/numeric_ops.py +664 -0
- bigframes-2.37.0/bigframes/core/compile/sqlglot/expressions/string_ops.py +382 -0
- bigframes-2.37.0/bigframes/core/compile/sqlglot/expressions/struct_ops.py +53 -0
- bigframes-2.37.0/bigframes/core/compile/sqlglot/expressions/timedelta_ops.py +44 -0
- bigframes-2.37.0/bigframes/core/compile/sqlglot/sqlglot_ir.py +842 -0
- bigframes-2.37.0/bigframes/core/expression_factoring.py +463 -0
- bigframes-2.37.0/bigframes/core/groupby/dataframe_group_by.py +782 -0
- bigframes-2.37.0/bigframes/core/groupby/series_group_by.py +453 -0
- bigframes-2.37.0/bigframes/core/indexers.py +566 -0
- bigframes-2.37.0/bigframes/core/indexes/base.py +853 -0
- bigframes-2.37.0/bigframes/core/indexes/datetimes.py +56 -0
- bigframes-2.37.0/bigframes/core/indexes/multi.py +115 -0
- bigframes-2.37.0/bigframes/core/nodes.py +1740 -0
- bigframes-2.37.0/bigframes/core/rewrite/__init__.py +54 -0
- bigframes-2.37.0/bigframes/core/rewrite/as_sql.py +227 -0
- bigframes-2.37.0/bigframes/core/rewrite/identifiers.py +87 -0
- bigframes-2.37.0/bigframes/core/rewrite/select_pullup.py +177 -0
- bigframes-2.37.0/bigframes/core/rewrite/timedeltas.py +266 -0
- bigframes-2.37.0/bigframes/core/rewrite/windows.py +139 -0
- bigframes-2.37.0/bigframes/core/schema.py +136 -0
- bigframes-2.37.0/bigframes/core/sql/__init__.py +267 -0
- bigframes-2.37.0/bigframes/core/sql/ml.py +296 -0
- bigframes-2.37.0/bigframes/core/sql_nodes.py +161 -0
- bigframes-2.37.0/bigframes/core/utils.py +251 -0
- bigframes-2.37.0/bigframes/core/window/rolling.py +276 -0
- bigframes-2.37.0/bigframes/dataframe.py +5100 -0
- bigframes-2.37.0/bigframes/display/html.py +387 -0
- bigframes-2.37.0/bigframes/dtypes.py +990 -0
- bigframes-2.37.0/bigframes/functions/_function_client.py +764 -0
- bigframes-2.37.0/bigframes/functions/_function_session.py +1011 -0
- bigframes-2.37.0/bigframes/functions/function_template.py +384 -0
- bigframes-2.37.0/bigframes/geopandas/geoseries.py +130 -0
- bigframes-2.37.0/bigframes/ml/base.py +384 -0
- bigframes-2.37.0/bigframes/ml/cluster.py +196 -0
- bigframes-2.37.0/bigframes/ml/compose.py +360 -0
- bigframes-2.37.0/bigframes/ml/decomposition.py +370 -0
- bigframes-2.37.0/bigframes/ml/ensemble.py +694 -0
- bigframes-2.37.0/bigframes/ml/imported.py +307 -0
- bigframes-2.37.0/bigframes/ml/impute.py +121 -0
- bigframes-2.37.0/bigframes/ml/llm.py +1069 -0
- bigframes-2.37.0/bigframes/ml/metrics/_metrics.py +411 -0
- bigframes-2.37.0/bigframes/ml/model_selection.py +226 -0
- bigframes-2.37.0/bigframes/ml/preprocessing.py +722 -0
- bigframes-2.37.0/bigframes/ml/sql.py +442 -0
- bigframes-2.37.0/bigframes/operations/blob.py +1081 -0
- bigframes-2.37.0/bigframes/operations/datetime_ops.py +156 -0
- bigframes-2.37.0/bigframes/operations/datetimes.py +182 -0
- bigframes-2.37.0/bigframes/operations/lists.py +46 -0
- bigframes-2.37.0/bigframes/operations/plotting.py +108 -0
- bigframes-2.37.0/bigframes/operations/strings.py +353 -0
- bigframes-2.37.0/bigframes/operations/structs.py +92 -0
- bigframes-2.37.0/bigframes/pandas/__init__.py +477 -0
- bigframes-2.37.0/bigframes/pandas/io/api.py +710 -0
- bigframes-2.37.0/bigframes/series.py +2779 -0
- bigframes-2.37.0/bigframes/session/__init__.py +2445 -0
- bigframes-2.37.0/bigframes/session/_io/bigquery/__init__.py +655 -0
- bigframes-2.37.0/bigframes/session/_io/bigquery/read_gbq_table.py +386 -0
- bigframes-2.37.0/bigframes/session/bigquery_session.py +214 -0
- bigframes-2.37.0/bigframes/session/bq_caching_executor.py +747 -0
- bigframes-2.37.0/bigframes/session/dry_runs.py +189 -0
- bigframes-2.37.0/bigframes/session/iceberg.py +204 -0
- bigframes-2.37.0/bigframes/session/loader.py +1544 -0
- bigframes-2.37.0/bigframes/session/polars_executor.py +164 -0
- bigframes-2.37.0/bigframes/session/read_api_execution.py +90 -0
- bigframes-2.37.0/bigframes/streaming/dataframe.py +573 -0
- bigframes-2.37.0/bigframes/testing/__init__.py +26 -0
- bigframes-2.37.0/bigframes/testing/utils.py +564 -0
- bigframes-2.37.0/bigframes/version.py +19 -0
- bigframes-2.37.0/bigframes.egg-info/PKG-INFO +198 -0
- bigframes-2.37.0/bigframes.egg-info/SOURCES.txt +1293 -0
- bigframes-2.37.0/bigframes.egg-info/requires.txt +66 -0
- bigframes-2.37.0/setup.py +162 -0
- bigframes-2.37.0/tests/system/large/bigquery/test_ai.py +130 -0
- bigframes-2.37.0/tests/system/large/functions/test_managed_function.py +1323 -0
- bigframes-2.37.0/tests/system/large/functions/test_remote_function.py +3250 -0
- bigframes-2.37.0/tests/system/large/ml/test_llm.py +807 -0
- bigframes-2.37.0/tests/system/large/ml/test_multimodal_llm.py +106 -0
- bigframes-2.37.0/tests/system/large/test_tpch.py +101 -0
- bigframes-2.37.0/tests/system/load/test_llm.py +160 -0
- bigframes-2.37.0/tests/system/small/bigquery/test_array.py +202 -0
- bigframes-2.37.0/tests/system/small/bigquery/test_datetime.py +144 -0
- bigframes-2.37.0/tests/system/small/bigquery/test_geo.py +492 -0
- bigframes-2.37.0/tests/system/small/bigquery/test_sql.py +161 -0
- bigframes-2.37.0/tests/system/small/bigquery/test_struct.py +62 -0
- bigframes-2.37.0/tests/system/small/core/test_reshape.py +120 -0
- bigframes-2.37.0/tests/system/small/engines/test_numeric_ops.py +211 -0
- bigframes-2.37.0/tests/system/small/ml/test_metrics.py +900 -0
- bigframes-2.37.0/tests/system/small/ml/test_model_selection.py +557 -0
- bigframes-2.37.0/tests/system/small/ml/test_utils.py +80 -0
- bigframes-2.37.0/tests/system/small/operations/test_dates.py +91 -0
- bigframes-2.37.0/tests/system/small/operations/test_datetimes.py +679 -0
- bigframes-2.37.0/tests/system/small/operations/test_timedeltas.py +656 -0
- bigframes-2.37.0/tests/system/small/test_anywidget.py +1158 -0
- bigframes-2.37.0/tests/system/small/test_dataframe.py +6255 -0
- bigframes-2.37.0/tests/system/small/test_dataframe_io.py +1199 -0
- bigframes-2.37.0/tests/system/small/test_groupby.py +982 -0
- bigframes-2.37.0/tests/system/small/test_index_io.py +56 -0
- bigframes-2.37.0/tests/system/small/test_multiindex.py +1488 -0
- bigframes-2.37.0/tests/system/small/test_null_index.py +435 -0
- bigframes-2.37.0/tests/system/small/test_numpy.py +159 -0
- bigframes-2.37.0/tests/system/small/test_pandas.py +1121 -0
- bigframes-2.37.0/tests/system/small/test_pandas_options.py +371 -0
- bigframes-2.37.0/tests/system/small/test_progress_bar.py +169 -0
- bigframes-2.37.0/tests/system/small/test_series.py +4969 -0
- bigframes-2.37.0/tests/system/small/test_series_io.py +126 -0
- bigframes-2.37.0/tests/system/small/test_session.py +2250 -0
- bigframes-2.37.0/tests/system/small/test_unordered.py +295 -0
- bigframes-2.37.0/tests/system/small/test_window.py +481 -0
- bigframes-2.37.0/tests/unit/bigquery/test_ai.py +319 -0
- bigframes-2.37.0/tests/unit/core/compile/sqlglot/aggregations/snapshots/test_binary_compiler/test_corr/out.sql +13 -0
- bigframes-2.37.0/tests/unit/core/compile/sqlglot/aggregations/snapshots/test_binary_compiler/test_cov/out.sql +13 -0
- bigframes-2.37.0/tests/unit/core/compile/sqlglot/aggregations/snapshots/test_nullary_compiler/test_row_number/out.sql +3 -0
- bigframes-2.37.0/tests/unit/core/compile/sqlglot/aggregations/snapshots/test_nullary_compiler/test_row_number_with_window/out.sql +3 -0
- bigframes-2.37.0/tests/unit/core/compile/sqlglot/aggregations/snapshots/test_nullary_compiler/test_size/out.sql +12 -0
- bigframes-2.37.0/tests/unit/core/compile/sqlglot/aggregations/snapshots/test_ordered_unary_compiler/test_array_agg/out.sql +12 -0
- bigframes-2.37.0/tests/unit/core/compile/sqlglot/aggregations/snapshots/test_ordered_unary_compiler/test_string_agg/out.sql +18 -0
- bigframes-2.37.0/tests/unit/core/compile/sqlglot/aggregations/snapshots/test_unary_compiler/test_all/out.sql +15 -0
- bigframes-2.37.0/tests/unit/core/compile/sqlglot/aggregations/snapshots/test_unary_compiler/test_all_w_window/out.sql +3 -0
- bigframes-2.37.0/tests/unit/core/compile/sqlglot/aggregations/snapshots/test_unary_compiler/test_any/out.sql +15 -0
- bigframes-2.37.0/tests/unit/core/compile/sqlglot/aggregations/snapshots/test_unary_compiler/test_any_value/out.sql +12 -0
- bigframes-2.37.0/tests/unit/core/compile/sqlglot/aggregations/snapshots/test_unary_compiler/test_any_value/window_out.sql +3 -0
- bigframes-2.37.0/tests/unit/core/compile/sqlglot/aggregations/snapshots/test_unary_compiler/test_any_value/window_partition_out.sql +3 -0
- bigframes-2.37.0/tests/unit/core/compile/sqlglot/aggregations/snapshots/test_unary_compiler/test_any_w_window/out.sql +3 -0
- bigframes-2.37.0/tests/unit/core/compile/sqlglot/aggregations/snapshots/test_unary_compiler/test_approx_quartiles/out.sql +16 -0
- bigframes-2.37.0/tests/unit/core/compile/sqlglot/aggregations/snapshots/test_unary_compiler/test_approx_top_count/out.sql +12 -0
- bigframes-2.37.0/tests/unit/core/compile/sqlglot/aggregations/snapshots/test_unary_compiler/test_count/out.sql +12 -0
- bigframes-2.37.0/tests/unit/core/compile/sqlglot/aggregations/snapshots/test_unary_compiler/test_count/window_out.sql +3 -0
- bigframes-2.37.0/tests/unit/core/compile/sqlglot/aggregations/snapshots/test_unary_compiler/test_count/window_partition_out.sql +3 -0
- bigframes-2.37.0/tests/unit/core/compile/sqlglot/aggregations/snapshots/test_unary_compiler/test_cut/int_bins.sql +47 -0
- bigframes-2.37.0/tests/unit/core/compile/sqlglot/aggregations/snapshots/test_unary_compiler/test_cut/int_bins_labels.sql +16 -0
- bigframes-2.37.0/tests/unit/core/compile/sqlglot/aggregations/snapshots/test_unary_compiler/test_cut/interval_bins.sql +8 -0
- bigframes-2.37.0/tests/unit/core/compile/sqlglot/aggregations/snapshots/test_unary_compiler/test_cut/interval_bins_labels.sql +8 -0
- bigframes-2.37.0/tests/unit/core/compile/sqlglot/aggregations/snapshots/test_unary_compiler/test_dense_rank/out.sql +3 -0
- bigframes-2.37.0/tests/unit/core/compile/sqlglot/aggregations/snapshots/test_unary_compiler/test_diff_w_bool/out.sql +3 -0
- bigframes-2.37.0/tests/unit/core/compile/sqlglot/aggregations/snapshots/test_unary_compiler/test_diff_w_date/out.sql +5 -0
- bigframes-2.37.0/tests/unit/core/compile/sqlglot/aggregations/snapshots/test_unary_compiler/test_diff_w_datetime/out.sql +7 -0
- bigframes-2.37.0/tests/unit/core/compile/sqlglot/aggregations/snapshots/test_unary_compiler/test_diff_w_int/out.sql +3 -0
- bigframes-2.37.0/tests/unit/core/compile/sqlglot/aggregations/snapshots/test_unary_compiler/test_diff_w_timestamp/out.sql +7 -0
- bigframes-2.37.0/tests/unit/core/compile/sqlglot/aggregations/snapshots/test_unary_compiler/test_first/out.sql +6 -0
- bigframes-2.37.0/tests/unit/core/compile/sqlglot/aggregations/snapshots/test_unary_compiler/test_first_non_null/out.sql +6 -0
- bigframes-2.37.0/tests/unit/core/compile/sqlglot/aggregations/snapshots/test_unary_compiler/test_last/out.sql +6 -0
- bigframes-2.37.0/tests/unit/core/compile/sqlglot/aggregations/snapshots/test_unary_compiler/test_last_non_null/out.sql +6 -0
- bigframes-2.37.0/tests/unit/core/compile/sqlglot/aggregations/snapshots/test_unary_compiler/test_max/out.sql +12 -0
- bigframes-2.37.0/tests/unit/core/compile/sqlglot/aggregations/snapshots/test_unary_compiler/test_max/window_out.sql +3 -0
- bigframes-2.37.0/tests/unit/core/compile/sqlglot/aggregations/snapshots/test_unary_compiler/test_max/window_partition_out.sql +3 -0
- bigframes-2.37.0/tests/unit/core/compile/sqlglot/aggregations/snapshots/test_unary_compiler/test_mean/out.sql +23 -0
- bigframes-2.37.0/tests/unit/core/compile/sqlglot/aggregations/snapshots/test_unary_compiler/test_mean/window_out.sql +3 -0
- bigframes-2.37.0/tests/unit/core/compile/sqlglot/aggregations/snapshots/test_unary_compiler/test_mean/window_partition_out.sql +3 -0
- bigframes-2.37.0/tests/unit/core/compile/sqlglot/aggregations/snapshots/test_unary_compiler/test_median/out.sql +18 -0
- bigframes-2.37.0/tests/unit/core/compile/sqlglot/aggregations/snapshots/test_unary_compiler/test_min/out.sql +12 -0
- bigframes-2.37.0/tests/unit/core/compile/sqlglot/aggregations/snapshots/test_unary_compiler/test_min/window_out.sql +3 -0
- bigframes-2.37.0/tests/unit/core/compile/sqlglot/aggregations/snapshots/test_unary_compiler/test_min/window_partition_out.sql +3 -0
- bigframes-2.37.0/tests/unit/core/compile/sqlglot/aggregations/snapshots/test_unary_compiler/test_nunique/out.sql +12 -0
- bigframes-2.37.0/tests/unit/core/compile/sqlglot/aggregations/snapshots/test_unary_compiler/test_pop_var/out.sql +15 -0
- bigframes-2.37.0/tests/unit/core/compile/sqlglot/aggregations/snapshots/test_unary_compiler/test_pop_var/window_out.sql +3 -0
- bigframes-2.37.0/tests/unit/core/compile/sqlglot/aggregations/snapshots/test_unary_compiler/test_product/out.sql +16 -0
- bigframes-2.37.0/tests/unit/core/compile/sqlglot/aggregations/snapshots/test_unary_compiler/test_product/window_partition_out.sql +16 -0
- bigframes-2.37.0/tests/unit/core/compile/sqlglot/aggregations/snapshots/test_unary_compiler/test_qcut/out.sql +51 -0
- bigframes-2.37.0/tests/unit/core/compile/sqlglot/aggregations/snapshots/test_unary_compiler/test_quantile/out.sql +17 -0
- bigframes-2.37.0/tests/unit/core/compile/sqlglot/aggregations/snapshots/test_unary_compiler/test_rank/out.sql +3 -0
- bigframes-2.37.0/tests/unit/core/compile/sqlglot/aggregations/snapshots/test_unary_compiler/test_shift/lag.sql +3 -0
- bigframes-2.37.0/tests/unit/core/compile/sqlglot/aggregations/snapshots/test_unary_compiler/test_shift/lead.sql +3 -0
- bigframes-2.37.0/tests/unit/core/compile/sqlglot/aggregations/snapshots/test_unary_compiler/test_shift/noop.sql +3 -0
- bigframes-2.37.0/tests/unit/core/compile/sqlglot/aggregations/snapshots/test_unary_compiler/test_std/out.sql +23 -0
- bigframes-2.37.0/tests/unit/core/compile/sqlglot/aggregations/snapshots/test_unary_compiler/test_std/window_out.sql +3 -0
- bigframes-2.37.0/tests/unit/core/compile/sqlglot/aggregations/snapshots/test_unary_compiler/test_sum/out.sql +15 -0
- bigframes-2.37.0/tests/unit/core/compile/sqlglot/aggregations/snapshots/test_unary_compiler/test_sum/window_out.sql +3 -0
- bigframes-2.37.0/tests/unit/core/compile/sqlglot/aggregations/snapshots/test_unary_compiler/test_sum/window_partition_out.sql +3 -0
- bigframes-2.37.0/tests/unit/core/compile/sqlglot/aggregations/snapshots/test_unary_compiler/test_var/out.sql +15 -0
- bigframes-2.37.0/tests/unit/core/compile/sqlglot/aggregations/snapshots/test_unary_compiler/test_var/window_out.sql +3 -0
- bigframes-2.37.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_ai_ops/test_ai_classify/out.sql +7 -0
- bigframes-2.37.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_ai_ops/test_ai_generate/out.sql +7 -0
- bigframes-2.37.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_ai_ops/test_ai_generate_bool/out.sql +7 -0
- bigframes-2.37.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_ai_ops/test_ai_generate_bool_with_connection_id/out.sql +8 -0
- bigframes-2.37.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_ai_ops/test_ai_generate_bool_with_model_param/out.sql +7 -0
- bigframes-2.37.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_ai_ops/test_ai_generate_double/out.sql +7 -0
- bigframes-2.37.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_ai_ops/test_ai_generate_double_with_connection_id/out.sql +8 -0
- bigframes-2.37.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_ai_ops/test_ai_generate_double_with_model_param/out.sql +7 -0
- bigframes-2.37.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_ai_ops/test_ai_generate_int/out.sql +7 -0
- bigframes-2.37.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_ai_ops/test_ai_generate_int_with_connection_id/out.sql +8 -0
- bigframes-2.37.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_ai_ops/test_ai_generate_int_with_model_param/out.sql +7 -0
- bigframes-2.37.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_ai_ops/test_ai_generate_with_connection_id/out.sql +8 -0
- bigframes-2.37.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_ai_ops/test_ai_generate_with_model_param/out.sql +7 -0
- bigframes-2.37.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_ai_ops/test_ai_generate_with_output_schema/out.sql +8 -0
- bigframes-2.37.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_ai_ops/test_ai_if/out.sql +6 -0
- bigframes-2.37.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_ai_ops/test_ai_score/out.sql +6 -0
- bigframes-2.37.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_array_ops/test_array_index/out.sql +3 -0
- bigframes-2.37.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_array_ops/test_array_reduce_op/out.sql +22 -0
- bigframes-2.37.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_array_ops/test_array_slice_with_only_start/out.sql +9 -0
- bigframes-2.37.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_array_ops/test_array_slice_with_start_and_stop/out.sql +9 -0
- bigframes-2.37.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_array_ops/test_array_to_string/out.sql +3 -0
- bigframes-2.37.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_array_ops/test_to_array_op/out.sql +10 -0
- bigframes-2.37.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_blob_ops/test_obj_fetch_metadata/out.sql +6 -0
- bigframes-2.37.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_blob_ops/test_obj_get_access_url/out.sql +10 -0
- bigframes-2.37.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_blob_ops/test_obj_make_ref/out.sql +4 -0
- bigframes-2.37.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_bool_ops/test_and_op/out.sql +8 -0
- bigframes-2.37.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_bool_ops/test_or_op/out.sql +8 -0
- bigframes-2.37.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_bool_ops/test_xor_op/out.sql +17 -0
- bigframes-2.37.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_comparison_ops/test_eq_null_match/out.sql +3 -0
- bigframes-2.37.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_comparison_ops/test_eq_numeric/out.sql +10 -0
- bigframes-2.37.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_comparison_ops/test_ge_numeric/out.sql +9 -0
- bigframes-2.37.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_comparison_ops/test_gt_numeric/out.sql +9 -0
- bigframes-2.37.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_comparison_ops/test_is_in/out.sql +14 -0
- bigframes-2.37.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_comparison_ops/test_le_numeric/out.sql +9 -0
- bigframes-2.37.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_comparison_ops/test_lt_numeric/out.sql +9 -0
- bigframes-2.37.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_comparison_ops/test_maximum_op/out.sql +3 -0
- bigframes-2.37.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_comparison_ops/test_minimum_op/out.sql +3 -0
- bigframes-2.37.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_comparison_ops/test_ne_numeric/out.sql +12 -0
- bigframes-2.37.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_datetime_ops/test_add_timedelta/out.sql +10 -0
- bigframes-2.37.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_datetime_ops/test_date/out.sql +3 -0
- bigframes-2.37.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_datetime_ops/test_datetime_to_integer_label/out.sql +26 -0
- bigframes-2.37.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_datetime_ops/test_day/out.sql +3 -0
- bigframes-2.37.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_datetime_ops/test_dayofweek/out.sql +5 -0
- bigframes-2.37.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_datetime_ops/test_dayofyear/out.sql +3 -0
- bigframes-2.37.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_datetime_ops/test_floor_dt/out.sql +14 -0
- bigframes-2.37.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_datetime_ops/test_hour/out.sql +3 -0
- bigframes-2.37.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_datetime_ops/test_integer_label_to_datetime_fixed/out.sql +5 -0
- bigframes-2.37.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_datetime_ops/test_integer_label_to_datetime_month/out.sql +39 -0
- bigframes-2.37.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_datetime_ops/test_integer_label_to_datetime_quarter/out.sql +43 -0
- bigframes-2.37.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_datetime_ops/test_integer_label_to_datetime_week/out.sql +7 -0
- bigframes-2.37.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_datetime_ops/test_integer_label_to_datetime_year/out.sql +3 -0
- bigframes-2.37.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_datetime_ops/test_iso_day/out.sql +3 -0
- bigframes-2.37.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_datetime_ops/test_iso_week/out.sql +3 -0
- bigframes-2.37.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_datetime_ops/test_iso_year/out.sql +3 -0
- bigframes-2.37.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_datetime_ops/test_minute/out.sql +3 -0
- bigframes-2.37.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_datetime_ops/test_month/out.sql +3 -0
- bigframes-2.37.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_datetime_ops/test_normalize/out.sql +3 -0
- bigframes-2.37.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_datetime_ops/test_quarter/out.sql +3 -0
- bigframes-2.37.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_datetime_ops/test_second/out.sql +3 -0
- bigframes-2.37.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_datetime_ops/test_strftime/out.sql +6 -0
- bigframes-2.37.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_datetime_ops/test_sub_timedelta/out.sql +11 -0
- bigframes-2.37.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_datetime_ops/test_time/out.sql +3 -0
- bigframes-2.37.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_datetime_ops/test_to_datetime/out.sql +6 -0
- bigframes-2.37.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_datetime_ops/test_to_timestamp/out.sql +9 -0
- bigframes-2.37.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_datetime_ops/test_unix_micros/out.sql +3 -0
- bigframes-2.37.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_datetime_ops/test_unix_millis/out.sql +3 -0
- bigframes-2.37.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_datetime_ops/test_unix_seconds/out.sql +3 -0
- bigframes-2.37.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_datetime_ops/test_year/out.sql +3 -0
- bigframes-2.37.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_generic_ops/test_astype_bool/out.sql +5 -0
- bigframes-2.37.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_generic_ops/test_astype_float/out.sql +5 -0
- bigframes-2.37.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_generic_ops/test_astype_from_json/out.sql +7 -0
- bigframes-2.37.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_generic_ops/test_astype_int/out.sql +11 -0
- bigframes-2.37.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_generic_ops/test_astype_json/out.sql +8 -0
- bigframes-2.37.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_generic_ops/test_astype_string/out.sql +5 -0
- bigframes-2.37.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_generic_ops/test_astype_time_like/out.sql +6 -0
- bigframes-2.37.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_generic_ops/test_binary_remote_function_op/out.sql +3 -0
- bigframes-2.37.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_generic_ops/test_case_when_op/out.sql +13 -0
- bigframes-2.37.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_generic_ops/test_clip/out.sql +3 -0
- bigframes-2.37.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_generic_ops/test_coalesce/out.sql +4 -0
- bigframes-2.37.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_generic_ops/test_fillna/out.sql +3 -0
- bigframes-2.37.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_generic_ops/test_hash/out.sql +3 -0
- bigframes-2.37.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_generic_ops/test_invert/out.sql +11 -0
- bigframes-2.37.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_generic_ops/test_isnull/out.sql +5 -0
- bigframes-2.37.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_generic_ops/test_map/out.sql +9 -0
- bigframes-2.37.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_generic_ops/test_nary_remote_function_op/out.sql +3 -0
- bigframes-2.37.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_generic_ops/test_notnull/out.sql +5 -0
- bigframes-2.37.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_generic_ops/test_remote_function_op/out.sql +8 -0
- bigframes-2.37.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_generic_ops/test_row_key/out.sql +46 -0
- bigframes-2.37.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_generic_ops/test_sql_scalar_op/out.sql +3 -0
- bigframes-2.37.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_generic_ops/test_where/out.sql +3 -0
- bigframes-2.37.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_geo_ops/test_geo_area/out.sql +3 -0
- bigframes-2.37.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_geo_ops/test_geo_st_astext/out.sql +3 -0
- bigframes-2.37.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_geo_ops/test_geo_st_boundary/out.sql +3 -0
- bigframes-2.37.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_geo_ops/test_geo_st_buffer/out.sql +3 -0
- bigframes-2.37.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_geo_ops/test_geo_st_centroid/out.sql +3 -0
- bigframes-2.37.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_geo_ops/test_geo_st_convexhull/out.sql +3 -0
- bigframes-2.37.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_geo_ops/test_geo_st_difference/out.sql +3 -0
- bigframes-2.37.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_geo_ops/test_geo_st_distance/out.sql +4 -0
- bigframes-2.37.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_geo_ops/test_geo_st_geogfromtext/out.sql +3 -0
- bigframes-2.37.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_geo_ops/test_geo_st_geogpoint/out.sql +3 -0
- bigframes-2.37.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_geo_ops/test_geo_st_intersection/out.sql +3 -0
- bigframes-2.37.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_geo_ops/test_geo_st_isclosed/out.sql +3 -0
- bigframes-2.37.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_geo_ops/test_geo_st_length/out.sql +3 -0
- bigframes-2.37.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_geo_ops/test_geo_x/out.sql +3 -0
- bigframes-2.37.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_geo_ops/test_geo_y/out.sql +3 -0
- bigframes-2.37.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_json_ops/test_json_extract/out.sql +3 -0
- bigframes-2.37.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_json_ops/test_json_extract_array/out.sql +3 -0
- bigframes-2.37.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_json_ops/test_json_extract_string_array/out.sql +3 -0
- bigframes-2.37.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_json_ops/test_json_keys/out.sql +4 -0
- bigframes-2.37.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_json_ops/test_json_query/out.sql +3 -0
- bigframes-2.37.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_json_ops/test_json_query_array/out.sql +3 -0
- bigframes-2.37.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_json_ops/test_json_set/out.sql +3 -0
- bigframes-2.37.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_json_ops/test_json_value/out.sql +3 -0
- bigframes-2.37.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_json_ops/test_parse_json/out.sql +3 -0
- bigframes-2.37.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_json_ops/test_to_json/out.sql +3 -0
- bigframes-2.37.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_json_ops/test_to_json_string/out.sql +3 -0
- bigframes-2.37.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_numeric_ops/test_abs/out.sql +3 -0
- bigframes-2.37.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_numeric_ops/test_add_numeric/out.sql +9 -0
- bigframes-2.37.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_numeric_ops/test_add_string/out.sql +3 -0
- bigframes-2.37.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_numeric_ops/test_add_timedelta/out.sql +10 -0
- bigframes-2.37.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_numeric_ops/test_arccos/out.sql +7 -0
- bigframes-2.37.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_numeric_ops/test_arccosh/out.sql +7 -0
- bigframes-2.37.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_numeric_ops/test_arcsin/out.sql +7 -0
- bigframes-2.37.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_numeric_ops/test_arcsinh/out.sql +3 -0
- bigframes-2.37.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_numeric_ops/test_arctan/out.sql +3 -0
- bigframes-2.37.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_numeric_ops/test_arctan2/out.sql +4 -0
- bigframes-2.37.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_numeric_ops/test_arctanh/out.sql +9 -0
- bigframes-2.37.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_numeric_ops/test_ceil/out.sql +3 -0
- bigframes-2.37.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_numeric_ops/test_cos/out.sql +3 -0
- bigframes-2.37.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_numeric_ops/test_cosh/out.sql +7 -0
- bigframes-2.37.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_numeric_ops/test_cosine_distance/out.sql +4 -0
- bigframes-2.37.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_numeric_ops/test_div_numeric/out.sql +14 -0
- bigframes-2.37.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_numeric_ops/test_div_timedelta/out.sql +10 -0
- bigframes-2.37.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_numeric_ops/test_euclidean_distance/out.sql +4 -0
- bigframes-2.37.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_numeric_ops/test_exp/out.sql +7 -0
- bigframes-2.37.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_numeric_ops/test_expm1/out.sql +3 -0
- bigframes-2.37.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_numeric_ops/test_floor/out.sql +3 -0
- bigframes-2.37.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_numeric_ops/test_floordiv_timedelta/out.sql +6 -0
- bigframes-2.37.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_numeric_ops/test_isfinite/out.sql +3 -0
- bigframes-2.37.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_numeric_ops/test_ln/out.sql +11 -0
- bigframes-2.37.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_numeric_ops/test_log10/out.sql +11 -0
- bigframes-2.37.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_numeric_ops/test_log1p/out.sql +11 -0
- bigframes-2.37.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_numeric_ops/test_manhattan_distance/out.sql +4 -0
- bigframes-2.37.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_numeric_ops/test_mod_numeric/out.sql +193 -0
- bigframes-2.37.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_numeric_ops/test_mul_numeric/out.sql +9 -0
- bigframes-2.37.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_numeric_ops/test_mul_timedelta/out.sql +16 -0
- bigframes-2.37.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_numeric_ops/test_neg/out.sql +5 -0
- bigframes-2.37.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_numeric_ops/test_pos/out.sql +3 -0
- bigframes-2.37.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_numeric_ops/test_pow/out.sql +245 -0
- bigframes-2.37.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_numeric_ops/test_round/out.sql +11 -0
- bigframes-2.37.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_numeric_ops/test_sin/out.sql +3 -0
- bigframes-2.37.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_numeric_ops/test_sinh/out.sql +7 -0
- bigframes-2.37.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_numeric_ops/test_sqrt/out.sql +3 -0
- bigframes-2.37.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_numeric_ops/test_sub_numeric/out.sql +9 -0
- bigframes-2.37.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_numeric_ops/test_sub_timedelta/out.sql +11 -0
- bigframes-2.37.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_numeric_ops/test_tan/out.sql +3 -0
- bigframes-2.37.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_numeric_ops/test_tanh/out.sql +3 -0
- bigframes-2.37.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_numeric_ops/test_unsafe_pow_op/out.sql +14 -0
- bigframes-2.37.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_string_ops/test_add_string/out.sql +3 -0
- bigframes-2.37.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_string_ops/test_capitalize/out.sql +3 -0
- bigframes-2.37.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_string_ops/test_endswith/out.sql +5 -0
- bigframes-2.37.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_string_ops/test_isalnum/out.sql +3 -0
- bigframes-2.37.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_string_ops/test_isalpha/out.sql +3 -0
- bigframes-2.37.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_string_ops/test_isdecimal/out.sql +3 -0
- bigframes-2.37.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_string_ops/test_isdigit/out.sql +6 -0
- bigframes-2.37.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_string_ops/test_islower/out.sql +3 -0
- bigframes-2.37.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_string_ops/test_isnumeric/out.sql +3 -0
- bigframes-2.37.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_string_ops/test_isspace/out.sql +3 -0
- bigframes-2.37.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_string_ops/test_isupper/out.sql +3 -0
- bigframes-2.37.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_string_ops/test_len/out.sql +3 -0
- bigframes-2.37.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_string_ops/test_len_w_array/out.sql +3 -0
- bigframes-2.37.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_string_ops/test_lower/out.sql +3 -0
- bigframes-2.37.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_string_ops/test_lstrip/out.sql +3 -0
- bigframes-2.37.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_string_ops/test_regex_replace_str/out.sql +3 -0
- bigframes-2.37.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_string_ops/test_replace_str/out.sql +3 -0
- bigframes-2.37.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_string_ops/test_reverse/out.sql +3 -0
- bigframes-2.37.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_string_ops/test_rstrip/out.sql +3 -0
- bigframes-2.37.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_string_ops/test_startswith/out.sql +5 -0
- bigframes-2.37.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_string_ops/test_str_contains/out.sql +3 -0
- bigframes-2.37.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_string_ops/test_str_contains_regex/out.sql +3 -0
- bigframes-2.37.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_string_ops/test_str_extract/out.sql +12 -0
- bigframes-2.37.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_string_ops/test_str_find/out.sql +6 -0
- bigframes-2.37.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_string_ops/test_str_get/out.sql +3 -0
- bigframes-2.37.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_string_ops/test_str_pad/out.sql +13 -0
- bigframes-2.37.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_string_ops/test_str_repeat/out.sql +3 -0
- bigframes-2.37.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_string_ops/test_str_slice/out.sql +3 -0
- bigframes-2.37.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_string_ops/test_strconcat/out.sql +3 -0
- bigframes-2.37.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_string_ops/test_string_split/out.sql +3 -0
- bigframes-2.37.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_string_ops/test_strip/out.sql +3 -0
- bigframes-2.37.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_string_ops/test_upper/out.sql +3 -0
- bigframes-2.37.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_string_ops/test_zfill/out.sql +7 -0
- bigframes-2.37.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_struct_ops/test_struct_field/out.sql +4 -0
- bigframes-2.37.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_struct_ops/test_struct_op/out.sql +8 -0
- bigframes-2.37.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_timedelta_ops/test_timedelta_floor/out.sql +3 -0
- bigframes-2.37.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_timedelta_ops/test_to_timedelta/out.sql +9 -0
- bigframes-2.37.0/tests/unit/core/compile/sqlglot/expressions/test_datetime_ops.py +367 -0
- bigframes-2.37.0/tests/unit/core/compile/sqlglot/expressions/test_numeric_ops.py +500 -0
- bigframes-2.37.0/tests/unit/core/compile/sqlglot/expressions/test_string_ops.py +331 -0
- bigframes-2.37.0/tests/unit/core/compile/sqlglot/snapshots/test_compile_aggregate/test_compile_aggregate/out.sql +23 -0
- bigframes-2.37.0/tests/unit/core/compile/sqlglot/snapshots/test_compile_aggregate/test_compile_aggregate_wo_dropna/out.sql +21 -0
- bigframes-2.37.0/tests/unit/core/compile/sqlglot/snapshots/test_compile_concat/test_compile_concat/out.sql +41 -0
- bigframes-2.37.0/tests/unit/core/compile/sqlglot/snapshots/test_compile_concat/test_compile_concat_filter_sorted/out.sql +55 -0
- bigframes-2.37.0/tests/unit/core/compile/sqlglot/snapshots/test_compile_explode/test_compile_explode_dataframe/out.sql +21 -0
- bigframes-2.37.0/tests/unit/core/compile/sqlglot/snapshots/test_compile_explode/test_compile_explode_series/out.sql +18 -0
- bigframes-2.37.0/tests/unit/core/compile/sqlglot/snapshots/test_compile_filter/test_compile_filter/out.sql +7 -0
- bigframes-2.37.0/tests/unit/core/compile/sqlglot/snapshots/test_compile_fromrange/test_compile_fromrange/out.sql +165 -0
- bigframes-2.37.0/tests/unit/core/compile/sqlglot/snapshots/test_compile_geo/test_st_regionstats/out.sql +51 -0
- bigframes-2.37.0/tests/unit/core/compile/sqlglot/snapshots/test_compile_geo/test_st_regionstats_without_optional_args/out.sql +15 -0
- bigframes-2.37.0/tests/unit/core/compile/sqlglot/snapshots/test_compile_geo/test_st_simplify/out.sql +10 -0
- bigframes-2.37.0/tests/unit/core/compile/sqlglot/snapshots/test_compile_isin/test_compile_isin/out.sql +36 -0
- bigframes-2.37.0/tests/unit/core/compile/sqlglot/snapshots/test_compile_isin/test_compile_isin_not_nullable/out.sql +29 -0
- bigframes-2.37.0/tests/unit/core/compile/sqlglot/snapshots/test_compile_join/test_compile_join/out.sql +22 -0
- bigframes-2.37.0/tests/unit/core/compile/sqlglot/snapshots/test_compile_join/test_compile_join_w_on/bool_col/out.sql +23 -0
- bigframes-2.37.0/tests/unit/core/compile/sqlglot/snapshots/test_compile_join/test_compile_join_w_on/float64_col/out.sql +23 -0
- bigframes-2.37.0/tests/unit/core/compile/sqlglot/snapshots/test_compile_join/test_compile_join_w_on/int64_col/out.sql +23 -0
- bigframes-2.37.0/tests/unit/core/compile/sqlglot/snapshots/test_compile_join/test_compile_join_w_on/numeric_col/out.sql +23 -0
- bigframes-2.37.0/tests/unit/core/compile/sqlglot/snapshots/test_compile_join/test_compile_join_w_on/string_col/out.sql +23 -0
- bigframes-2.37.0/tests/unit/core/compile/sqlglot/snapshots/test_compile_join/test_compile_join_w_on/time_col/out.sql +23 -0
- bigframes-2.37.0/tests/unit/core/compile/sqlglot/snapshots/test_compile_random_sample/test_compile_random_sample/out.sql +183 -0
- bigframes-2.37.0/tests/unit/core/compile/sqlglot/snapshots/test_compile_readtable/test_compile_readtable/out.sql +18 -0
- bigframes-2.37.0/tests/unit/core/compile/sqlglot/snapshots/test_compile_readtable/test_compile_readtable_w_columns_filters/out.sql +10 -0
- bigframes-2.37.0/tests/unit/core/compile/sqlglot/snapshots/test_compile_readtable/test_compile_readtable_w_json_types/out.sql +3 -0
- bigframes-2.37.0/tests/unit/core/compile/sqlglot/snapshots/test_compile_readtable/test_compile_readtable_w_limit/out.sql +7 -0
- bigframes-2.37.0/tests/unit/core/compile/sqlglot/snapshots/test_compile_readtable/test_compile_readtable_w_nested_structs_types/out.sql +5 -0
- bigframes-2.37.0/tests/unit/core/compile/sqlglot/snapshots/test_compile_readtable/test_compile_readtable_w_ordering/out.sql +6 -0
- bigframes-2.37.0/tests/unit/core/compile/sqlglot/snapshots/test_compile_readtable/test_compile_readtable_w_repeated_types/out.sql +11 -0
- bigframes-2.37.0/tests/unit/core/compile/sqlglot/snapshots/test_compile_readtable/test_compile_readtable_w_system_time/out.sql +3 -0
- bigframes-2.37.0/tests/unit/core/compile/sqlglot/snapshots/test_compile_window/test_compile_window_w_groupby_rolling/out.sql +55 -0
- bigframes-2.37.0/tests/unit/core/compile/sqlglot/snapshots/test_compile_window/test_compile_window_w_range_rolling/out.sql +31 -0
- bigframes-2.37.0/tests/unit/core/compile/sqlglot/snapshots/test_compile_window/test_compile_window_w_skips_nulls_op/out.sql +19 -0
- bigframes-2.37.0/tests/unit/core/compile/sqlglot/snapshots/test_compile_window/test_compile_window_wo_skips_nulls_op/out.sql +13 -0
- bigframes-2.37.0/tests/unit/core/compile/sqlglot/test_compile_concat.py +48 -0
- bigframes-2.37.0/tests/unit/core/compile/sqlglot/test_compile_fromrange.py +35 -0
- bigframes-2.37.0/tests/unit/core/compile/sqlglot/test_compile_readtable.py +82 -0
- bigframes-2.37.0/tests/unit/core/compile/sqlglot/test_scalar_compiler.py +226 -0
- bigframes-2.37.0/tests/unit/core/rewrite/conftest.py +84 -0
- bigframes-2.37.0/tests/unit/core/rewrite/test_identifiers.py +201 -0
- bigframes-2.37.0/tests/unit/core/test_groupby.py +264 -0
- bigframes-2.37.0/tests/unit/display/test_anywidget.py +181 -0
- bigframes-2.37.0/tests/unit/display/test_render_mode.py +106 -0
- bigframes-2.37.0/tests/unit/functions/test_remote_function_utils.py +527 -0
- bigframes-2.37.0/tests/unit/session/test_read_gbq_table.py +191 -0
- bigframes-2.37.0/tests/unit/session/test_session.py +561 -0
- bigframes-2.37.0/tests/unit/test_col.py +229 -0
- bigframes-2.37.0/tests/unit/test_dataframe_polars.py +4480 -0
- bigframes-2.37.0/tests/unit/test_planner.py +117 -0
- bigframes-2.37.0/tests/unit/test_series_polars.py +5140 -0
- bigframes-2.37.0/third_party/bigframes_vendored/ibis/expr/operations/numeric.py +374 -0
- bigframes-2.37.0/third_party/bigframes_vendored/pandas/core/computation/align.py +225 -0
- bigframes-2.37.0/third_party/bigframes_vendored/pandas/core/computation/eval.py +368 -0
- bigframes-2.37.0/third_party/bigframes_vendored/pandas/core/config_init.py +233 -0
- bigframes-2.37.0/third_party/bigframes_vendored/pandas/core/frame.py +7509 -0
- bigframes-2.37.0/third_party/bigframes_vendored/pandas/core/generic.py +1255 -0
- bigframes-2.37.0/third_party/bigframes_vendored/pandas/core/indexes/accessor.py +551 -0
- bigframes-2.37.0/third_party/bigframes_vendored/pandas/core/series.py +6083 -0
- bigframes-2.37.0/third_party/bigframes_vendored/sklearn/metrics/_classification.py +257 -0
- bigframes-2.37.0/third_party/bigframes_vendored/sklearn/preprocessing/_encoder.py +89 -0
- bigframes-2.37.0/third_party/bigframes_vendored/sqlglot/generator.py +5825 -0
- bigframes-2.37.0/third_party/bigframes_vendored/version.py +19 -0
- bigframes-2.35.0/PKG-INFO +0 -191
- bigframes-2.35.0/README.rst +0 -95
- bigframes-2.35.0/bigframes/_config/auth.py +0 -57
- bigframes-2.35.0/bigframes/_config/bigquery_options.py +0 -450
- bigframes-2.35.0/bigframes/_config/compute_options.py +0 -187
- bigframes-2.35.0/bigframes/_config/experiment_options.py +0 -147
- bigframes-2.35.0/bigframes/_config/sampling_options.py +0 -118
- bigframes-2.35.0/bigframes/bigquery/_operations/ai.py +0 -935
- bigframes-2.35.0/bigframes/bigquery/_operations/sql.py +0 -90
- bigframes-2.35.0/bigframes/bigquery/ai.py +0 -43
- bigframes-2.35.0/bigframes/core/array_value.py +0 -634
- bigframes-2.35.0/bigframes/core/block_transforms.py +0 -895
- bigframes-2.35.0/bigframes/core/blocks.py +0 -3504
- bigframes-2.35.0/bigframes/core/bq_data.py +0 -247
- bigframes-2.35.0/bigframes/core/col.py +0 -126
- bigframes-2.35.0/bigframes/core/compile/compiled.py +0 -561
- bigframes-2.35.0/bigframes/core/compile/googlesql/__init__.py +0 -61
- bigframes-2.35.0/bigframes/core/compile/googlesql/abc.py +0 -25
- bigframes-2.35.0/bigframes/core/compile/googlesql/datatype.py +0 -23
- bigframes-2.35.0/bigframes/core/compile/googlesql/expression.py +0 -124
- bigframes-2.35.0/bigframes/core/compile/googlesql/function.py +0 -32
- bigframes-2.35.0/bigframes/core/compile/googlesql/query.py +0 -231
- bigframes-2.35.0/bigframes/core/compile/ibis_compiler/ibis_compiler.py +0 -296
- bigframes-2.35.0/bigframes/core/compile/ibis_compiler/scalar_op_registry.py +0 -2190
- bigframes-2.35.0/bigframes/core/compile/polars/lowering.py +0 -472
- bigframes-2.35.0/bigframes/core/compile/sqlglot/aggregate_compiler.py +0 -76
- bigframes-2.35.0/bigframes/core/compile/sqlglot/aggregations/binary_compiler.py +0 -58
- bigframes-2.35.0/bigframes/core/compile/sqlglot/aggregations/nullary_compiler.py +0 -53
- bigframes-2.35.0/bigframes/core/compile/sqlglot/aggregations/unary_compiler.py +0 -620
- bigframes-2.35.0/bigframes/core/compile/sqlglot/aggregations/windows.py +0 -205
- bigframes-2.35.0/bigframes/core/compile/sqlglot/compiler.py +0 -404
- bigframes-2.35.0/bigframes/core/compile/sqlglot/expressions/ai_ops.py +0 -148
- bigframes-2.35.0/bigframes/core/compile/sqlglot/expressions/array_ops.py +0 -155
- bigframes-2.35.0/bigframes/core/compile/sqlglot/expressions/blob_ops.py +0 -52
- bigframes-2.35.0/bigframes/core/compile/sqlglot/expressions/bool_ops.py +0 -85
- bigframes-2.35.0/bigframes/core/compile/sqlglot/expressions/comparison_ops.py +0 -174
- bigframes-2.35.0/bigframes/core/compile/sqlglot/expressions/date_ops.py +0 -72
- bigframes-2.35.0/bigframes/core/compile/sqlglot/expressions/datetime_ops.py +0 -673
- bigframes-2.35.0/bigframes/core/compile/sqlglot/expressions/generic_ops.py +0 -336
- bigframes-2.35.0/bigframes/core/compile/sqlglot/expressions/geo_ops.py +0 -131
- bigframes-2.35.0/bigframes/core/compile/sqlglot/expressions/json_ops.py +0 -84
- bigframes-2.35.0/bigframes/core/compile/sqlglot/expressions/numeric_ops.py +0 -663
- bigframes-2.35.0/bigframes/core/compile/sqlglot/expressions/string_ops.py +0 -382
- bigframes-2.35.0/bigframes/core/compile/sqlglot/expressions/struct_ops.py +0 -53
- bigframes-2.35.0/bigframes/core/compile/sqlglot/expressions/timedelta_ops.py +0 -44
- bigframes-2.35.0/bigframes/core/compile/sqlglot/scalar_compiler.py +0 -221
- bigframes-2.35.0/bigframes/core/compile/sqlglot/sqlglot_ir.py +0 -850
- bigframes-2.35.0/bigframes/core/expression_factoring.py +0 -463
- bigframes-2.35.0/bigframes/core/groupby/dataframe_group_by.py +0 -782
- bigframes-2.35.0/bigframes/core/groupby/series_group_by.py +0 -453
- bigframes-2.35.0/bigframes/core/indexers.py +0 -552
- bigframes-2.35.0/bigframes/core/indexes/base.py +0 -848
- bigframes-2.35.0/bigframes/core/indexes/datetimes.py +0 -56
- bigframes-2.35.0/bigframes/core/indexes/multi.py +0 -115
- bigframes-2.35.0/bigframes/core/nodes.py +0 -1742
- bigframes-2.35.0/bigframes/core/rewrite/__init__.py +0 -47
- bigframes-2.35.0/bigframes/core/rewrite/identifiers.py +0 -93
- bigframes-2.35.0/bigframes/core/rewrite/select_pullup.py +0 -178
- bigframes-2.35.0/bigframes/core/rewrite/timedeltas.py +0 -266
- bigframes-2.35.0/bigframes/core/rewrite/windows.py +0 -76
- bigframes-2.35.0/bigframes/core/schema.py +0 -151
- bigframes-2.35.0/bigframes/core/sql/__init__.py +0 -248
- bigframes-2.35.0/bigframes/core/sql/ml.py +0 -296
- bigframes-2.35.0/bigframes/core/utils.py +0 -251
- bigframes-2.35.0/bigframes/core/window/rolling.py +0 -277
- bigframes-2.35.0/bigframes/dataframe.py +0 -5178
- bigframes-2.35.0/bigframes/display/html.py +0 -383
- bigframes-2.35.0/bigframes/dtypes.py +0 -987
- bigframes-2.35.0/bigframes/functions/_function_client.py +0 -698
- bigframes-2.35.0/bigframes/functions/_function_session.py +0 -1005
- bigframes-2.35.0/bigframes/functions/function_template.py +0 -378
- bigframes-2.35.0/bigframes/geopandas/geoseries.py +0 -130
- bigframes-2.35.0/bigframes/ml/base.py +0 -382
- bigframes-2.35.0/bigframes/ml/cluster.py +0 -197
- bigframes-2.35.0/bigframes/ml/compose.py +0 -360
- bigframes-2.35.0/bigframes/ml/decomposition.py +0 -371
- bigframes-2.35.0/bigframes/ml/ensemble.py +0 -697
- bigframes-2.35.0/bigframes/ml/imported.py +0 -304
- bigframes-2.35.0/bigframes/ml/impute.py +0 -122
- bigframes-2.35.0/bigframes/ml/llm.py +0 -1069
- bigframes-2.35.0/bigframes/ml/metrics/_metrics.py +0 -411
- bigframes-2.35.0/bigframes/ml/model_selection.py +0 -227
- bigframes-2.35.0/bigframes/ml/preprocessing.py +0 -723
- bigframes-2.35.0/bigframes/ml/sql.py +0 -437
- bigframes-2.35.0/bigframes/operations/blob.py +0 -1080
- bigframes-2.35.0/bigframes/operations/datetime_ops.py +0 -154
- bigframes-2.35.0/bigframes/operations/datetimes.py +0 -167
- bigframes-2.35.0/bigframes/operations/lists.py +0 -46
- bigframes-2.35.0/bigframes/operations/plotting.py +0 -108
- bigframes-2.35.0/bigframes/operations/strings.py +0 -353
- bigframes-2.35.0/bigframes/operations/structs.py +0 -91
- bigframes-2.35.0/bigframes/pandas/__init__.py +0 -475
- bigframes-2.35.0/bigframes/pandas/io/api.py +0 -701
- bigframes-2.35.0/bigframes/series.py +0 -2823
- bigframes-2.35.0/bigframes/session/__init__.py +0 -2429
- bigframes-2.35.0/bigframes/session/_io/bigquery/__init__.py +0 -655
- bigframes-2.35.0/bigframes/session/_io/bigquery/read_gbq_table.py +0 -495
- bigframes-2.35.0/bigframes/session/bigquery_session.py +0 -214
- bigframes-2.35.0/bigframes/session/bq_caching_executor.py +0 -749
- bigframes-2.35.0/bigframes/session/dry_runs.py +0 -182
- bigframes-2.35.0/bigframes/session/loader.py +0 -1432
- bigframes-2.35.0/bigframes/session/polars_executor.py +0 -162
- bigframes-2.35.0/bigframes/session/read_api_execution.py +0 -87
- bigframes-2.35.0/bigframes/streaming/dataframe.py +0 -573
- bigframes-2.35.0/bigframes/testing/__init__.py +0 -19
- bigframes-2.35.0/bigframes/testing/utils.py +0 -536
- bigframes-2.35.0/bigframes/version.py +0 -19
- bigframes-2.35.0/bigframes.egg-info/PKG-INFO +0 -191
- bigframes-2.35.0/bigframes.egg-info/SOURCES.txt +0 -1295
- bigframes-2.35.0/bigframes.egg-info/requires.txt +0 -65
- bigframes-2.35.0/setup.py +0 -154
- bigframes-2.35.0/tests/system/large/bigquery/test_ai.py +0 -96
- bigframes-2.35.0/tests/system/large/functions/test_managed_function.py +0 -1333
- bigframes-2.35.0/tests/system/large/functions/test_remote_function.py +0 -3233
- bigframes-2.35.0/tests/system/large/ml/test_llm.py +0 -233
- bigframes-2.35.0/tests/system/large/ml/test_multimodal_llm.py +0 -45
- bigframes-2.35.0/tests/system/load/test_llm.py +0 -187
- bigframes-2.35.0/tests/system/small/bigquery/test_array.py +0 -198
- bigframes-2.35.0/tests/system/small/bigquery/test_datetime.py +0 -137
- bigframes-2.35.0/tests/system/small/bigquery/test_geo.py +0 -491
- bigframes-2.35.0/tests/system/small/bigquery/test_sql.py +0 -161
- bigframes-2.35.0/tests/system/small/bigquery/test_struct.py +0 -61
- bigframes-2.35.0/tests/system/small/core/test_reshape.py +0 -120
- bigframes-2.35.0/tests/system/small/engines/test_numeric_ops.py +0 -170
- bigframes-2.35.0/tests/system/small/ml/test_llm.py +0 -611
- bigframes-2.35.0/tests/system/small/ml/test_metrics.py +0 -892
- bigframes-2.35.0/tests/system/small/ml/test_model_selection.py +0 -551
- bigframes-2.35.0/tests/system/small/ml/test_multimodal_llm.py +0 -84
- bigframes-2.35.0/tests/system/small/ml/test_utils.py +0 -80
- bigframes-2.35.0/tests/system/small/operations/test_dates.py +0 -91
- bigframes-2.35.0/tests/system/small/operations/test_datetimes.py +0 -635
- bigframes-2.35.0/tests/system/small/operations/test_timedeltas.py +0 -634
- bigframes-2.35.0/tests/system/small/test_anywidget.py +0 -1169
- bigframes-2.35.0/tests/system/small/test_dataframe.py +0 -6220
- bigframes-2.35.0/tests/system/small/test_dataframe_io.py +0 -1201
- bigframes-2.35.0/tests/system/small/test_groupby.py +0 -953
- bigframes-2.35.0/tests/system/small/test_index_io.py +0 -58
- bigframes-2.35.0/tests/system/small/test_multiindex.py +0 -1487
- bigframes-2.35.0/tests/system/small/test_null_index.py +0 -436
- bigframes-2.35.0/tests/system/small/test_numpy.py +0 -157
- bigframes-2.35.0/tests/system/small/test_pandas.py +0 -1092
- bigframes-2.35.0/tests/system/small/test_pandas_options.py +0 -372
- bigframes-2.35.0/tests/system/small/test_progress_bar.py +0 -169
- bigframes-2.35.0/tests/system/small/test_series.py +0 -4959
- bigframes-2.35.0/tests/system/small/test_series_io.py +0 -127
- bigframes-2.35.0/tests/system/small/test_session.py +0 -2235
- bigframes-2.35.0/tests/system/small/test_unordered.py +0 -293
- bigframes-2.35.0/tests/system/small/test_window.py +0 -466
- bigframes-2.35.0/tests/unit/bigquery/test_ai.py +0 -244
- bigframes-2.35.0/tests/unit/core/compile/googlesql/test_expression.py +0 -37
- bigframes-2.35.0/tests/unit/core/compile/googlesql/test_function.py +0 -21
- bigframes-2.35.0/tests/unit/core/compile/googlesql/test_query.py +0 -223
- bigframes-2.35.0/tests/unit/core/compile/sqlglot/aggregations/snapshots/test_binary_compiler/test_corr/out.sql +0 -13
- bigframes-2.35.0/tests/unit/core/compile/sqlglot/aggregations/snapshots/test_binary_compiler/test_cov/out.sql +0 -13
- bigframes-2.35.0/tests/unit/core/compile/sqlglot/aggregations/snapshots/test_nullary_compiler/test_row_number/out.sql +0 -27
- bigframes-2.35.0/tests/unit/core/compile/sqlglot/aggregations/snapshots/test_nullary_compiler/test_row_number_with_window/out.sql +0 -13
- bigframes-2.35.0/tests/unit/core/compile/sqlglot/aggregations/snapshots/test_nullary_compiler/test_size/out.sql +0 -26
- bigframes-2.35.0/tests/unit/core/compile/sqlglot/aggregations/snapshots/test_ordered_unary_compiler/test_array_agg/out.sql +0 -12
- bigframes-2.35.0/tests/unit/core/compile/sqlglot/aggregations/snapshots/test_ordered_unary_compiler/test_string_agg/out.sql +0 -18
- bigframes-2.35.0/tests/unit/core/compile/sqlglot/aggregations/snapshots/test_unary_compiler/test_all/out.sql +0 -15
- bigframes-2.35.0/tests/unit/core/compile/sqlglot/aggregations/snapshots/test_unary_compiler/test_all_w_window/out.sql +0 -13
- bigframes-2.35.0/tests/unit/core/compile/sqlglot/aggregations/snapshots/test_unary_compiler/test_any/out.sql +0 -15
- bigframes-2.35.0/tests/unit/core/compile/sqlglot/aggregations/snapshots/test_unary_compiler/test_any_value/out.sql +0 -12
- bigframes-2.35.0/tests/unit/core/compile/sqlglot/aggregations/snapshots/test_unary_compiler/test_any_value/window_out.sql +0 -13
- bigframes-2.35.0/tests/unit/core/compile/sqlglot/aggregations/snapshots/test_unary_compiler/test_any_value/window_partition_out.sql +0 -14
- bigframes-2.35.0/tests/unit/core/compile/sqlglot/aggregations/snapshots/test_unary_compiler/test_any_w_window/out.sql +0 -13
- bigframes-2.35.0/tests/unit/core/compile/sqlglot/aggregations/snapshots/test_unary_compiler/test_approx_quartiles/out.sql +0 -16
- bigframes-2.35.0/tests/unit/core/compile/sqlglot/aggregations/snapshots/test_unary_compiler/test_approx_top_count/out.sql +0 -12
- bigframes-2.35.0/tests/unit/core/compile/sqlglot/aggregations/snapshots/test_unary_compiler/test_count/out.sql +0 -12
- bigframes-2.35.0/tests/unit/core/compile/sqlglot/aggregations/snapshots/test_unary_compiler/test_count/window_out.sql +0 -13
- bigframes-2.35.0/tests/unit/core/compile/sqlglot/aggregations/snapshots/test_unary_compiler/test_count/window_partition_out.sql +0 -14
- bigframes-2.35.0/tests/unit/core/compile/sqlglot/aggregations/snapshots/test_unary_compiler/test_cut/int_bins.sql +0 -55
- bigframes-2.35.0/tests/unit/core/compile/sqlglot/aggregations/snapshots/test_unary_compiler/test_cut/int_bins_labels.sql +0 -24
- bigframes-2.35.0/tests/unit/core/compile/sqlglot/aggregations/snapshots/test_unary_compiler/test_cut/interval_bins.sql +0 -18
- bigframes-2.35.0/tests/unit/core/compile/sqlglot/aggregations/snapshots/test_unary_compiler/test_cut/interval_bins_labels.sql +0 -18
- bigframes-2.35.0/tests/unit/core/compile/sqlglot/aggregations/snapshots/test_unary_compiler/test_dense_rank/out.sql +0 -13
- bigframes-2.35.0/tests/unit/core/compile/sqlglot/aggregations/snapshots/test_unary_compiler/test_diff_w_bool/out.sql +0 -13
- bigframes-2.35.0/tests/unit/core/compile/sqlglot/aggregations/snapshots/test_unary_compiler/test_diff_w_date/out.sql +0 -15
- bigframes-2.35.0/tests/unit/core/compile/sqlglot/aggregations/snapshots/test_unary_compiler/test_diff_w_datetime/out.sql +0 -17
- bigframes-2.35.0/tests/unit/core/compile/sqlglot/aggregations/snapshots/test_unary_compiler/test_diff_w_int/out.sql +0 -13
- bigframes-2.35.0/tests/unit/core/compile/sqlglot/aggregations/snapshots/test_unary_compiler/test_diff_w_timestamp/out.sql +0 -17
- bigframes-2.35.0/tests/unit/core/compile/sqlglot/aggregations/snapshots/test_unary_compiler/test_first/out.sql +0 -16
- bigframes-2.35.0/tests/unit/core/compile/sqlglot/aggregations/snapshots/test_unary_compiler/test_first_non_null/out.sql +0 -16
- bigframes-2.35.0/tests/unit/core/compile/sqlglot/aggregations/snapshots/test_unary_compiler/test_last/out.sql +0 -16
- bigframes-2.35.0/tests/unit/core/compile/sqlglot/aggregations/snapshots/test_unary_compiler/test_last_non_null/out.sql +0 -16
- bigframes-2.35.0/tests/unit/core/compile/sqlglot/aggregations/snapshots/test_unary_compiler/test_max/out.sql +0 -12
- bigframes-2.35.0/tests/unit/core/compile/sqlglot/aggregations/snapshots/test_unary_compiler/test_max/window_out.sql +0 -13
- bigframes-2.35.0/tests/unit/core/compile/sqlglot/aggregations/snapshots/test_unary_compiler/test_max/window_partition_out.sql +0 -14
- bigframes-2.35.0/tests/unit/core/compile/sqlglot/aggregations/snapshots/test_unary_compiler/test_mean/out.sql +0 -27
- bigframes-2.35.0/tests/unit/core/compile/sqlglot/aggregations/snapshots/test_unary_compiler/test_mean/window_out.sql +0 -13
- bigframes-2.35.0/tests/unit/core/compile/sqlglot/aggregations/snapshots/test_unary_compiler/test_mean/window_partition_out.sql +0 -14
- bigframes-2.35.0/tests/unit/core/compile/sqlglot/aggregations/snapshots/test_unary_compiler/test_median/out.sql +0 -18
- bigframes-2.35.0/tests/unit/core/compile/sqlglot/aggregations/snapshots/test_unary_compiler/test_min/out.sql +0 -12
- bigframes-2.35.0/tests/unit/core/compile/sqlglot/aggregations/snapshots/test_unary_compiler/test_min/window_out.sql +0 -13
- bigframes-2.35.0/tests/unit/core/compile/sqlglot/aggregations/snapshots/test_unary_compiler/test_min/window_partition_out.sql +0 -14
- bigframes-2.35.0/tests/unit/core/compile/sqlglot/aggregations/snapshots/test_unary_compiler/test_nunique/out.sql +0 -12
- bigframes-2.35.0/tests/unit/core/compile/sqlglot/aggregations/snapshots/test_unary_compiler/test_pop_var/out.sql +0 -15
- bigframes-2.35.0/tests/unit/core/compile/sqlglot/aggregations/snapshots/test_unary_compiler/test_pop_var/window_out.sql +0 -13
- bigframes-2.35.0/tests/unit/core/compile/sqlglot/aggregations/snapshots/test_unary_compiler/test_product/out.sql +0 -16
- bigframes-2.35.0/tests/unit/core/compile/sqlglot/aggregations/snapshots/test_unary_compiler/test_product/window_partition_out.sql +0 -27
- bigframes-2.35.0/tests/unit/core/compile/sqlglot/aggregations/snapshots/test_unary_compiler/test_qcut/out.sql +0 -61
- bigframes-2.35.0/tests/unit/core/compile/sqlglot/aggregations/snapshots/test_unary_compiler/test_quantile/out.sql +0 -17
- bigframes-2.35.0/tests/unit/core/compile/sqlglot/aggregations/snapshots/test_unary_compiler/test_rank/out.sql +0 -13
- bigframes-2.35.0/tests/unit/core/compile/sqlglot/aggregations/snapshots/test_unary_compiler/test_shift/lag.sql +0 -13
- bigframes-2.35.0/tests/unit/core/compile/sqlglot/aggregations/snapshots/test_unary_compiler/test_shift/lead.sql +0 -13
- bigframes-2.35.0/tests/unit/core/compile/sqlglot/aggregations/snapshots/test_unary_compiler/test_shift/noop.sql +0 -13
- bigframes-2.35.0/tests/unit/core/compile/sqlglot/aggregations/snapshots/test_unary_compiler/test_std/out.sql +0 -27
- bigframes-2.35.0/tests/unit/core/compile/sqlglot/aggregations/snapshots/test_unary_compiler/test_std/window_out.sql +0 -13
- bigframes-2.35.0/tests/unit/core/compile/sqlglot/aggregations/snapshots/test_unary_compiler/test_sum/out.sql +0 -15
- bigframes-2.35.0/tests/unit/core/compile/sqlglot/aggregations/snapshots/test_unary_compiler/test_sum/window_out.sql +0 -13
- bigframes-2.35.0/tests/unit/core/compile/sqlglot/aggregations/snapshots/test_unary_compiler/test_sum/window_partition_out.sql +0 -14
- bigframes-2.35.0/tests/unit/core/compile/sqlglot/aggregations/snapshots/test_unary_compiler/test_var/out.sql +0 -15
- bigframes-2.35.0/tests/unit/core/compile/sqlglot/aggregations/snapshots/test_unary_compiler/test_var/window_out.sql +0 -13
- bigframes-2.35.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_ai_ops/test_ai_classify/out.sql +0 -17
- bigframes-2.35.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_ai_ops/test_ai_generate/out.sql +0 -17
- bigframes-2.35.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_ai_ops/test_ai_generate_bool/out.sql +0 -17
- 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
- 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
- bigframes-2.35.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_ai_ops/test_ai_generate_double/out.sql +0 -17
- 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
- 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
- bigframes-2.35.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_ai_ops/test_ai_generate_int/out.sql +0 -17
- 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
- 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
- bigframes-2.35.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_ai_ops/test_ai_generate_with_connection_id/out.sql +0 -18
- bigframes-2.35.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_ai_ops/test_ai_generate_with_model_param/out.sql +0 -17
- bigframes-2.35.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_ai_ops/test_ai_generate_with_output_schema/out.sql +0 -18
- bigframes-2.35.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_ai_ops/test_ai_if/out.sql +0 -16
- bigframes-2.35.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_ai_ops/test_ai_score/out.sql +0 -16
- bigframes-2.35.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_array_ops/test_array_index/out.sql +0 -13
- bigframes-2.35.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_array_ops/test_array_reduce_op/out.sql +0 -37
- bigframes-2.35.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_array_ops/test_array_slice_with_only_start/out.sql +0 -19
- 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
- bigframes-2.35.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_array_ops/test_array_to_string/out.sql +0 -13
- bigframes-2.35.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_array_ops/test_to_array_op/out.sql +0 -26
- bigframes-2.35.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_blob_ops/test_obj_fetch_metadata/out.sql +0 -25
- bigframes-2.35.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_blob_ops/test_obj_get_access_url/out.sql +0 -25
- bigframes-2.35.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_blob_ops/test_obj_make_ref/out.sql +0 -15
- bigframes-2.35.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_bool_ops/test_and_op/out.sql +0 -42
- bigframes-2.35.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_bool_ops/test_or_op/out.sql +0 -42
- bigframes-2.35.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_bool_ops/test_xor_op/out.sql +0 -51
- bigframes-2.35.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_comparison_ops/test_eq_null_match/out.sql +0 -14
- bigframes-2.35.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_comparison_ops/test_eq_numeric/out.sql +0 -67
- bigframes-2.35.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_comparison_ops/test_ge_numeric/out.sql +0 -54
- bigframes-2.35.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_comparison_ops/test_gt_numeric/out.sql +0 -54
- bigframes-2.35.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_comparison_ops/test_is_in/out.sql +0 -35
- bigframes-2.35.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_comparison_ops/test_le_numeric/out.sql +0 -54
- bigframes-2.35.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_comparison_ops/test_lt_numeric/out.sql +0 -54
- bigframes-2.35.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_comparison_ops/test_maximum_op/out.sql +0 -14
- bigframes-2.35.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_comparison_ops/test_minimum_op/out.sql +0 -14
- bigframes-2.35.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_comparison_ops/test_ne_numeric/out.sql +0 -69
- bigframes-2.35.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_datetime_ops/test_add_timedelta/out.sql +0 -60
- bigframes-2.35.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_datetime_ops/test_date/out.sql +0 -13
- bigframes-2.35.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_datetime_ops/test_datetime_to_integer_label/out.sql +0 -38
- bigframes-2.35.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_datetime_ops/test_day/out.sql +0 -13
- bigframes-2.35.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_datetime_ops/test_dayofweek/out.sql +0 -19
- bigframes-2.35.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_datetime_ops/test_dayofyear/out.sql +0 -13
- bigframes-2.35.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_datetime_ops/test_floor_dt/out.sql +0 -36
- bigframes-2.35.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_datetime_ops/test_hour/out.sql +0 -13
- bigframes-2.35.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_datetime_ops/test_integer_label_to_datetime_fixed/out.sql +0 -16
- bigframes-2.35.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_datetime_ops/test_integer_label_to_datetime_month/out.sql +0 -50
- bigframes-2.35.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_datetime_ops/test_integer_label_to_datetime_quarter/out.sql +0 -54
- bigframes-2.35.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_datetime_ops/test_integer_label_to_datetime_week/out.sql +0 -18
- bigframes-2.35.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_datetime_ops/test_integer_label_to_datetime_year/out.sql +0 -14
- bigframes-2.35.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_datetime_ops/test_iso_day/out.sql +0 -13
- bigframes-2.35.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_datetime_ops/test_iso_week/out.sql +0 -13
- bigframes-2.35.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_datetime_ops/test_iso_year/out.sql +0 -13
- bigframes-2.35.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_datetime_ops/test_minute/out.sql +0 -13
- bigframes-2.35.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_datetime_ops/test_month/out.sql +0 -13
- bigframes-2.35.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_datetime_ops/test_normalize/out.sql +0 -13
- bigframes-2.35.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_datetime_ops/test_quarter/out.sql +0 -13
- bigframes-2.35.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_datetime_ops/test_second/out.sql +0 -13
- bigframes-2.35.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_datetime_ops/test_strftime/out.sql +0 -22
- bigframes-2.35.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_datetime_ops/test_sub_timedelta/out.sql +0 -82
- bigframes-2.35.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_datetime_ops/test_time/out.sql +0 -13
- bigframes-2.35.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_datetime_ops/test_to_datetime/out.sql +0 -19
- bigframes-2.35.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_datetime_ops/test_to_timestamp/out.sql +0 -24
- bigframes-2.35.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_datetime_ops/test_unix_micros/out.sql +0 -13
- bigframes-2.35.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_datetime_ops/test_unix_millis/out.sql +0 -13
- bigframes-2.35.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_datetime_ops/test_unix_seconds/out.sql +0 -13
- bigframes-2.35.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_datetime_ops/test_year/out.sql +0 -13
- bigframes-2.35.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_generic_ops/test_astype_bool/out.sql +0 -18
- bigframes-2.35.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_generic_ops/test_astype_float/out.sql +0 -17
- bigframes-2.35.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_generic_ops/test_astype_from_json/out.sql +0 -21
- bigframes-2.35.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_generic_ops/test_astype_int/out.sql +0 -33
- bigframes-2.35.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_generic_ops/test_astype_json/out.sql +0 -26
- bigframes-2.35.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_generic_ops/test_astype_string/out.sql +0 -18
- bigframes-2.35.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_generic_ops/test_astype_time_like/out.sql +0 -19
- bigframes-2.35.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_generic_ops/test_binary_remote_function_op/out.sql +0 -14
- bigframes-2.35.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_generic_ops/test_case_when_op/out.sql +0 -29
- bigframes-2.35.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_generic_ops/test_clip/out.sql +0 -15
- bigframes-2.35.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_generic_ops/test_coalesce/out.sql +0 -16
- bigframes-2.35.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_generic_ops/test_fillna/out.sql +0 -14
- bigframes-2.35.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_generic_ops/test_hash/out.sql +0 -13
- bigframes-2.35.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_generic_ops/test_invert/out.sql +0 -25
- bigframes-2.35.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_generic_ops/test_isnull/out.sql +0 -13
- bigframes-2.35.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_generic_ops/test_map/out.sql +0 -19
- bigframes-2.35.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_generic_ops/test_nary_remote_function_op/out.sql +0 -15
- bigframes-2.35.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_generic_ops/test_notnull/out.sql +0 -13
- bigframes-2.35.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_generic_ops/test_remote_function_op/out.sql +0 -19
- bigframes-2.35.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_generic_ops/test_row_key/out.sql +0 -70
- bigframes-2.35.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_generic_ops/test_sql_scalar_op/out.sql +0 -14
- bigframes-2.35.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_generic_ops/test_where/out.sql +0 -15
- bigframes-2.35.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_geo_ops/test_geo_area/out.sql +0 -13
- bigframes-2.35.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_geo_ops/test_geo_st_astext/out.sql +0 -13
- bigframes-2.35.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_geo_ops/test_geo_st_boundary/out.sql +0 -13
- bigframes-2.35.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_geo_ops/test_geo_st_buffer/out.sql +0 -13
- bigframes-2.35.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_geo_ops/test_geo_st_centroid/out.sql +0 -13
- bigframes-2.35.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_geo_ops/test_geo_st_convexhull/out.sql +0 -13
- bigframes-2.35.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_geo_ops/test_geo_st_difference/out.sql +0 -13
- bigframes-2.35.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_geo_ops/test_geo_st_distance/out.sql +0 -15
- bigframes-2.35.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_geo_ops/test_geo_st_geogfromtext/out.sql +0 -13
- bigframes-2.35.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_geo_ops/test_geo_st_geogpoint/out.sql +0 -14
- bigframes-2.35.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_geo_ops/test_geo_st_intersection/out.sql +0 -13
- bigframes-2.35.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_geo_ops/test_geo_st_isclosed/out.sql +0 -13
- bigframes-2.35.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_geo_ops/test_geo_st_length/out.sql +0 -13
- bigframes-2.35.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_geo_ops/test_geo_x/out.sql +0 -13
- bigframes-2.35.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_geo_ops/test_geo_y/out.sql +0 -13
- bigframes-2.35.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_json_ops/test_json_extract/out.sql +0 -13
- bigframes-2.35.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_json_ops/test_json_extract_array/out.sql +0 -13
- bigframes-2.35.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_json_ops/test_json_extract_string_array/out.sql +0 -13
- bigframes-2.35.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_json_ops/test_json_keys/out.sql +0 -15
- bigframes-2.35.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_json_ops/test_json_query/out.sql +0 -13
- bigframes-2.35.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_json_ops/test_json_query_array/out.sql +0 -13
- bigframes-2.35.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_json_ops/test_json_set/out.sql +0 -13
- bigframes-2.35.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_json_ops/test_json_value/out.sql +0 -13
- bigframes-2.35.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_json_ops/test_parse_json/out.sql +0 -13
- bigframes-2.35.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_json_ops/test_to_json/out.sql +0 -13
- bigframes-2.35.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_json_ops/test_to_json_string/out.sql +0 -13
- bigframes-2.35.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_numeric_ops/test_abs/out.sql +0 -13
- bigframes-2.35.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_numeric_ops/test_add_numeric/out.sql +0 -54
- bigframes-2.35.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_numeric_ops/test_add_string/out.sql +0 -13
- bigframes-2.35.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_numeric_ops/test_add_timedelta/out.sql +0 -60
- bigframes-2.35.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_numeric_ops/test_arccos/out.sql +0 -17
- bigframes-2.35.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_numeric_ops/test_arccosh/out.sql +0 -17
- bigframes-2.35.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_numeric_ops/test_arcsin/out.sql +0 -17
- bigframes-2.35.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_numeric_ops/test_arcsinh/out.sql +0 -13
- bigframes-2.35.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_numeric_ops/test_arctan/out.sql +0 -13
- bigframes-2.35.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_numeric_ops/test_arctan2/out.sql +0 -17
- bigframes-2.35.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_numeric_ops/test_arctanh/out.sql +0 -19
- bigframes-2.35.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_numeric_ops/test_ceil/out.sql +0 -13
- bigframes-2.35.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_numeric_ops/test_cos/out.sql +0 -13
- bigframes-2.35.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_numeric_ops/test_cosh/out.sql +0 -17
- bigframes-2.35.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_numeric_ops/test_cosine_distance/out.sql +0 -16
- bigframes-2.35.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_numeric_ops/test_div_numeric/out.sql +0 -122
- bigframes-2.35.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_numeric_ops/test_div_timedelta/out.sql +0 -21
- bigframes-2.35.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_numeric_ops/test_euclidean_distance/out.sql +0 -16
- bigframes-2.35.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_numeric_ops/test_exp/out.sql +0 -17
- bigframes-2.35.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_numeric_ops/test_expm1/out.sql +0 -13
- bigframes-2.35.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_numeric_ops/test_floor/out.sql +0 -13
- bigframes-2.35.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_numeric_ops/test_floordiv_timedelta/out.sql +0 -18
- bigframes-2.35.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_numeric_ops/test_ln/out.sql +0 -21
- bigframes-2.35.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_numeric_ops/test_log10/out.sql +0 -21
- bigframes-2.35.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_numeric_ops/test_log1p/out.sql +0 -21
- bigframes-2.35.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_numeric_ops/test_manhattan_distance/out.sql +0 -16
- bigframes-2.35.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_numeric_ops/test_mod_numeric/out.sql +0 -292
- bigframes-2.35.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_numeric_ops/test_mul_numeric/out.sql +0 -54
- bigframes-2.35.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_numeric_ops/test_mul_timedelta/out.sql +0 -43
- bigframes-2.35.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_numeric_ops/test_neg/out.sql +0 -15
- bigframes-2.35.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_numeric_ops/test_pos/out.sql +0 -13
- bigframes-2.35.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_numeric_ops/test_pow/out.sql +0 -329
- bigframes-2.35.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_numeric_ops/test_round/out.sql +0 -81
- bigframes-2.35.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_numeric_ops/test_sin/out.sql +0 -13
- bigframes-2.35.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_numeric_ops/test_sinh/out.sql +0 -17
- bigframes-2.35.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_numeric_ops/test_sqrt/out.sql +0 -13
- bigframes-2.35.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_numeric_ops/test_sub_numeric/out.sql +0 -54
- bigframes-2.35.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_numeric_ops/test_sub_timedelta/out.sql +0 -82
- bigframes-2.35.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_numeric_ops/test_tan/out.sql +0 -13
- bigframes-2.35.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_numeric_ops/test_tanh/out.sql +0 -13
- bigframes-2.35.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_numeric_ops/test_unsafe_pow_op/out.sql +0 -43
- bigframes-2.35.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_string_ops/test_add_string/out.sql +0 -13
- bigframes-2.35.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_string_ops/test_capitalize/out.sql +0 -13
- bigframes-2.35.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_string_ops/test_endswith/out.sql +0 -17
- bigframes-2.35.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_string_ops/test_isalnum/out.sql +0 -13
- bigframes-2.35.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_string_ops/test_isalpha/out.sql +0 -13
- bigframes-2.35.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_string_ops/test_isdecimal/out.sql +0 -13
- bigframes-2.35.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_string_ops/test_isdigit/out.sql +0 -16
- bigframes-2.35.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_string_ops/test_islower/out.sql +0 -13
- bigframes-2.35.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_string_ops/test_isnumeric/out.sql +0 -13
- bigframes-2.35.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_string_ops/test_isspace/out.sql +0 -13
- bigframes-2.35.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_string_ops/test_isupper/out.sql +0 -13
- bigframes-2.35.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_string_ops/test_len/out.sql +0 -13
- bigframes-2.35.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_string_ops/test_len_w_array/out.sql +0 -13
- bigframes-2.35.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_string_ops/test_lower/out.sql +0 -13
- bigframes-2.35.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_string_ops/test_lstrip/out.sql +0 -13
- bigframes-2.35.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_string_ops/test_regex_replace_str/out.sql +0 -13
- bigframes-2.35.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_string_ops/test_replace_str/out.sql +0 -13
- bigframes-2.35.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_string_ops/test_reverse/out.sql +0 -13
- bigframes-2.35.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_string_ops/test_rstrip/out.sql +0 -13
- bigframes-2.35.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_string_ops/test_startswith/out.sql +0 -17
- bigframes-2.35.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_string_ops/test_str_contains/out.sql +0 -13
- bigframes-2.35.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_string_ops/test_str_contains_regex/out.sql +0 -13
- bigframes-2.35.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_string_ops/test_str_extract/out.sql +0 -23
- bigframes-2.35.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_string_ops/test_str_find/out.sql +0 -19
- bigframes-2.35.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_string_ops/test_str_get/out.sql +0 -13
- bigframes-2.35.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_string_ops/test_str_pad/out.sql +0 -25
- bigframes-2.35.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_string_ops/test_str_repeat/out.sql +0 -13
- bigframes-2.35.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_string_ops/test_str_slice/out.sql +0 -13
- bigframes-2.35.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_string_ops/test_strconcat/out.sql +0 -13
- bigframes-2.35.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_string_ops/test_string_split/out.sql +0 -13
- bigframes-2.35.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_string_ops/test_strip/out.sql +0 -13
- bigframes-2.35.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_string_ops/test_upper/out.sql +0 -13
- bigframes-2.35.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_string_ops/test_zfill/out.sql +0 -17
- bigframes-2.35.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_struct_ops/test_struct_field/out.sql +0 -15
- bigframes-2.35.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_struct_ops/test_struct_op/out.sql +0 -21
- bigframes-2.35.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_timedelta_ops/test_timedelta_floor/out.sql +0 -13
- bigframes-2.35.0/tests/unit/core/compile/sqlglot/expressions/snapshots/test_timedelta_ops/test_to_timedelta/out.sql +0 -54
- bigframes-2.35.0/tests/unit/core/compile/sqlglot/expressions/test_datetime_ops.py +0 -366
- bigframes-2.35.0/tests/unit/core/compile/sqlglot/expressions/test_numeric_ops.py +0 -489
- bigframes-2.35.0/tests/unit/core/compile/sqlglot/expressions/test_string_ops.py +0 -332
- bigframes-2.35.0/tests/unit/core/compile/sqlglot/snapshots/test_compile_aggregate/test_compile_aggregate/out.sql +0 -27
- bigframes-2.35.0/tests/unit/core/compile/sqlglot/snapshots/test_compile_aggregate/test_compile_aggregate_wo_dropna/out.sql +0 -25
- bigframes-2.35.0/tests/unit/core/compile/sqlglot/snapshots/test_compile_concat/test_compile_concat/out.sql +0 -73
- bigframes-2.35.0/tests/unit/core/compile/sqlglot/snapshots/test_compile_concat/test_compile_concat_filter_sorted/out.sql +0 -119
- bigframes-2.35.0/tests/unit/core/compile/sqlglot/snapshots/test_compile_explode/test_compile_explode_dataframe/out.sql +0 -21
- bigframes-2.35.0/tests/unit/core/compile/sqlglot/snapshots/test_compile_explode/test_compile_explode_series/out.sql +0 -18
- bigframes-2.35.0/tests/unit/core/compile/sqlglot/snapshots/test_compile_filter/test_compile_filter/out.sql +0 -25
- bigframes-2.35.0/tests/unit/core/compile/sqlglot/snapshots/test_compile_geo/test_st_regionstats/out.sql +0 -36
- bigframes-2.35.0/tests/unit/core/compile/sqlglot/snapshots/test_compile_geo/test_st_regionstats_without_optional_args/out.sql +0 -30
- bigframes-2.35.0/tests/unit/core/compile/sqlglot/snapshots/test_compile_geo/test_st_simplify/out.sql +0 -15
- bigframes-2.35.0/tests/unit/core/compile/sqlglot/snapshots/test_compile_isin/test_compile_isin/out.sql +0 -41
- bigframes-2.35.0/tests/unit/core/compile/sqlglot/snapshots/test_compile_isin/test_compile_isin_not_nullable/out.sql +0 -34
- bigframes-2.35.0/tests/unit/core/compile/sqlglot/snapshots/test_compile_join/test_compile_join/out.sql +0 -32
- bigframes-2.35.0/tests/unit/core/compile/sqlglot/snapshots/test_compile_join/test_compile_join_w_on/bool_col/out.sql +0 -33
- bigframes-2.35.0/tests/unit/core/compile/sqlglot/snapshots/test_compile_join/test_compile_join_w_on/float64_col/out.sql +0 -33
- bigframes-2.35.0/tests/unit/core/compile/sqlglot/snapshots/test_compile_join/test_compile_join_w_on/int64_col/out.sql +0 -33
- bigframes-2.35.0/tests/unit/core/compile/sqlglot/snapshots/test_compile_join/test_compile_join_w_on/numeric_col/out.sql +0 -33
- bigframes-2.35.0/tests/unit/core/compile/sqlglot/snapshots/test_compile_join/test_compile_join_w_on/string_col/out.sql +0 -33
- bigframes-2.35.0/tests/unit/core/compile/sqlglot/snapshots/test_compile_join/test_compile_join_w_on/time_col/out.sql +0 -33
- bigframes-2.35.0/tests/unit/core/compile/sqlglot/snapshots/test_compile_random_sample/test_compile_random_sample/out.sql +0 -184
- bigframes-2.35.0/tests/unit/core/compile/sqlglot/snapshots/test_compile_readtable/test_compile_readtable/out.sql +0 -37
- bigframes-2.35.0/tests/unit/core/compile/sqlglot/snapshots/test_compile_readtable/test_compile_readtable_w_columns_filters/out.sql +0 -14
- bigframes-2.35.0/tests/unit/core/compile/sqlglot/snapshots/test_compile_readtable/test_compile_readtable_w_json_types/out.sql +0 -10
- bigframes-2.35.0/tests/unit/core/compile/sqlglot/snapshots/test_compile_readtable/test_compile_readtable_w_limit/out.sql +0 -13
- bigframes-2.35.0/tests/unit/core/compile/sqlglot/snapshots/test_compile_readtable/test_compile_readtable_w_nested_structs_types/out.sql +0 -11
- bigframes-2.35.0/tests/unit/core/compile/sqlglot/snapshots/test_compile_readtable/test_compile_readtable_w_ordering/out.sql +0 -12
- bigframes-2.35.0/tests/unit/core/compile/sqlglot/snapshots/test_compile_readtable/test_compile_readtable_w_repeated_types/out.sql +0 -23
- bigframes-2.35.0/tests/unit/core/compile/sqlglot/snapshots/test_compile_readtable/test_compile_readtable_w_system_time/out.sql +0 -36
- bigframes-2.35.0/tests/unit/core/compile/sqlglot/snapshots/test_compile_window/test_compile_window_w_groupby_rolling/out.sql +0 -76
- bigframes-2.35.0/tests/unit/core/compile/sqlglot/snapshots/test_compile_window/test_compile_window_w_range_rolling/out.sql +0 -33
- bigframes-2.35.0/tests/unit/core/compile/sqlglot/snapshots/test_compile_window/test_compile_window_w_skips_nulls_op/out.sql +0 -27
- bigframes-2.35.0/tests/unit/core/compile/sqlglot/snapshots/test_compile_window/test_compile_window_wo_skips_nulls_op/out.sql +0 -21
- bigframes-2.35.0/tests/unit/core/compile/sqlglot/test_compile_concat.py +0 -49
- bigframes-2.35.0/tests/unit/core/compile/sqlglot/test_compile_readtable.py +0 -81
- bigframes-2.35.0/tests/unit/core/compile/sqlglot/test_scalar_compiler.py +0 -226
- bigframes-2.35.0/tests/unit/core/rewrite/conftest.py +0 -83
- bigframes-2.35.0/tests/unit/core/rewrite/test_identifiers.py +0 -153
- bigframes-2.35.0/tests/unit/core/test_groupby.py +0 -264
- bigframes-2.35.0/tests/unit/display/test_anywidget.py +0 -181
- bigframes-2.35.0/tests/unit/functions/test_remote_function_utils.py +0 -529
- bigframes-2.35.0/tests/unit/operations/__init__.py +0 -13
- bigframes-2.35.0/tests/unit/session/test_read_gbq_table.py +0 -188
- bigframes-2.35.0/tests/unit/session/test_session.py +0 -560
- bigframes-2.35.0/tests/unit/test_col.py +0 -160
- bigframes-2.35.0/tests/unit/test_dataframe_polars.py +0 -4479
- bigframes-2.35.0/tests/unit/test_planner.py +0 -117
- bigframes-2.35.0/tests/unit/test_series_polars.py +0 -5141
- bigframes-2.35.0/third_party/bigframes_vendored/ibis/expr/operations/numeric.py +0 -376
- bigframes-2.35.0/third_party/bigframes_vendored/pandas/core/computation/align.py +0 -226
- bigframes-2.35.0/third_party/bigframes_vendored/pandas/core/computation/eval.py +0 -367
- bigframes-2.35.0/third_party/bigframes_vendored/pandas/core/config_init.py +0 -156
- bigframes-2.35.0/third_party/bigframes_vendored/pandas/core/frame.py +0 -7509
- bigframes-2.35.0/third_party/bigframes_vendored/pandas/core/generic.py +0 -1268
- bigframes-2.35.0/third_party/bigframes_vendored/pandas/core/indexes/accessor.py +0 -521
- bigframes-2.35.0/third_party/bigframes_vendored/pandas/core/series.py +0 -6079
- bigframes-2.35.0/third_party/bigframes_vendored/sklearn/metrics/_classification.py +0 -257
- bigframes-2.35.0/third_party/bigframes_vendored/sklearn/preprocessing/_encoder.py +0 -88
- bigframes-2.35.0/third_party/bigframes_vendored/sqlglot/generator.py +0 -5824
- bigframes-2.35.0/third_party/bigframes_vendored/version.py +0 -19
- {bigframes-2.35.0 → bigframes-2.37.0}/LICENSE +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/MANIFEST.in +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/bigframes/__init__.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/bigframes/_config/__init__.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/bigframes/_config/display_options.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/bigframes/_config/global_options.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/bigframes/_importing.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/bigframes/_magics.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/bigframes/_tools/__init__.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/bigframes/_tools/strings.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/bigframes/bigquery/__init__.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/bigframes/bigquery/_operations/__init__.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/bigframes/bigquery/_operations/approx_agg.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/bigframes/bigquery/_operations/array.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/bigframes/bigquery/_operations/datetime.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/bigframes/bigquery/_operations/geo.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/bigframes/bigquery/_operations/io.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/bigframes/bigquery/_operations/json.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/bigframes/bigquery/_operations/ml.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/bigframes/bigquery/_operations/obj.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/bigframes/bigquery/_operations/search.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/bigframes/bigquery/_operations/struct.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/bigframes/bigquery/_operations/table.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/bigframes/bigquery/_operations/utils.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/bigframes/bigquery/ml.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/bigframes/bigquery/obj.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/bigframes/blob/_functions.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/bigframes/clients.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/bigframes/constants.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/bigframes/core/__init__.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/bigframes/core/agg_expressions.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/bigframes/core/backports.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/bigframes/core/bigframe_node.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/bigframes/core/compile/__init__.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/bigframes/core/compile/api.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/bigframes/core/compile/concat.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/bigframes/core/compile/configs.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/bigframes/core/compile/constants.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/bigframes/core/compile/explode.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/bigframes/core/compile/ibis_compiler/__init__.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/bigframes/core/compile/ibis_compiler/aggregate_compiler.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/bigframes/core/compile/ibis_compiler/default_ordering.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/bigframes/core/compile/ibis_compiler/operations/__init__.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/bigframes/core/compile/ibis_compiler/operations/generic_ops.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/bigframes/core/compile/ibis_compiler/operations/geo_ops.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/bigframes/core/compile/ibis_compiler/scalar_op_compiler.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/bigframes/core/compile/ibis_types.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/bigframes/core/compile/polars/__init__.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/bigframes/core/compile/polars/compiler.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/bigframes/core/compile/polars/operations/__init__.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/bigframes/core/compile/polars/operations/generic_ops.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/bigframes/core/compile/polars/operations/numeric_ops.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/bigframes/core/compile/polars/operations/struct_ops.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/bigframes/core/compile/schema_translator.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/bigframes/core/compile/sqlglot/__init__.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/bigframes/core/compile/sqlglot/aggregations/__init__.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/bigframes/core/compile/sqlglot/aggregations/op_registration.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/bigframes/core/compile/sqlglot/aggregations/ordered_unary_compiler.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/bigframes/core/compile/sqlglot/expressions/__init__.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/bigframes/core/compile/sqlglot/expressions/constants.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/bigframes/core/compile/sqlglot/expressions/typed_expr.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/bigframes/core/compile/sqlglot/sqlglot_types.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/bigframes/core/convert.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/bigframes/core/eval.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/bigframes/core/events.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/bigframes/core/explode.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/bigframes/core/expression.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/bigframes/core/field.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/bigframes/core/global_session.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/bigframes/core/graphs.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/bigframes/core/groupby/__init__.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/bigframes/core/groupby/aggs.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/bigframes/core/groupby/group_by.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/bigframes/core/guid.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/bigframes/core/identifiers.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/bigframes/core/indexes/__init__.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/bigframes/core/interchange.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/bigframes/core/join_def.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/bigframes/core/local_data.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/bigframes/core/logging/__init__.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/bigframes/core/logging/data_types.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/bigframes/core/logging/log_adapter.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/bigframes/core/ordered_sets.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/bigframes/core/ordering.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/bigframes/core/pruning.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/bigframes/core/pyarrow_utils.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/bigframes/core/pyformat.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/bigframes/core/reshape/__init__.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/bigframes/core/reshape/api.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/bigframes/core/reshape/concat.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/bigframes/core/reshape/encoding.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/bigframes/core/reshape/merge.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/bigframes/core/reshape/pivot.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/bigframes/core/reshape/tile.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/bigframes/core/rewrite/fold_row_count.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/bigframes/core/rewrite/implicit_align.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/bigframes/core/rewrite/legacy_align.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/bigframes/core/rewrite/op_lowering.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/bigframes/core/rewrite/order.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/bigframes/core/rewrite/pruning.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/bigframes/core/rewrite/scan_reduction.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/bigframes/core/rewrite/schema_binding.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/bigframes/core/rewrite/slices.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/bigframes/core/scalar.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/bigframes/core/sequences.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/bigframes/core/slices.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/bigframes/core/sql/io.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/bigframes/core/sql/literals.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/bigframes/core/sql/table.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/bigframes/core/tools/__init__.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/bigframes/core/tools/bigquery_schema.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/bigframes/core/tools/datetimes.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/bigframes/core/tree_properties.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/bigframes/core/validations.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/bigframes/core/window/__init__.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/bigframes/core/window/ordering.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/bigframes/core/window_spec.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/bigframes/display/__init__.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/bigframes/display/anywidget.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/bigframes/display/plaintext.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/bigframes/display/table_widget.css +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/bigframes/display/table_widget.js +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/bigframes/enums.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/bigframes/exceptions.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/bigframes/features.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/bigframes/formatting_helpers.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/bigframes/functions/__init__.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/bigframes/functions/_utils.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/bigframes/functions/function.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/bigframes/functions/function_typing.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/bigframes/functions/udf_def.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/bigframes/geopandas/__init__.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/bigframes/ml/__init__.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/bigframes/ml/core.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/bigframes/ml/forecasting.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/bigframes/ml/globals.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/bigframes/ml/linear_model.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/bigframes/ml/loader.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/bigframes/ml/metrics/__init__.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/bigframes/ml/metrics/pairwise.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/bigframes/ml/pipeline.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/bigframes/ml/remote.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/bigframes/ml/utils.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/bigframes/operations/__init__.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/bigframes/operations/_matplotlib/__init__.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/bigframes/operations/_matplotlib/core.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/bigframes/operations/_matplotlib/hist.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/bigframes/operations/_op_converters.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/bigframes/operations/aggregations.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/bigframes/operations/ai.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/bigframes/operations/ai_ops.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/bigframes/operations/array_ops.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/bigframes/operations/base_ops.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/bigframes/operations/blob_ops.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/bigframes/operations/bool_ops.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/bigframes/operations/comparison_ops.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/bigframes/operations/date_ops.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/bigframes/operations/distance_ops.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/bigframes/operations/frequency_ops.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/bigframes/operations/generic_ops.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/bigframes/operations/geo_ops.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/bigframes/operations/json_ops.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/bigframes/operations/numeric_ops.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/bigframes/operations/numpy_op_maps.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/bigframes/operations/output_schemas.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/bigframes/operations/python_op_maps.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/bigframes/operations/remote_function_ops.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/bigframes/operations/semantics.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/bigframes/operations/string_ops.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/bigframes/operations/struct_ops.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/bigframes/operations/time_ops.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/bigframes/operations/timedelta_ops.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/bigframes/operations/type.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/bigframes/pandas/api/__init__.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/bigframes/pandas/api/typing.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/bigframes/pandas/core/__init__.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/bigframes/pandas/core/api.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/bigframes/pandas/core/methods/__init__.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/bigframes/pandas/core/methods/describe.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/bigframes/pandas/core/tools/__init__.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/bigframes/pandas/core/tools/timedeltas.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/bigframes/pandas/io/__init__.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/bigframes/py.typed +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/bigframes/session/_io/__init__.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/bigframes/session/_io/bigquery/read_gbq_query.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/bigframes/session/_io/pandas.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/bigframes/session/anonymous_dataset.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/bigframes/session/clients.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/bigframes/session/direct_gbq_execution.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/bigframes/session/environment.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/bigframes/session/execution_spec.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/bigframes/session/executor.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/bigframes/session/local_scan_executor.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/bigframes/session/metrics.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/bigframes/session/planner.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/bigframes/session/semi_executor.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/bigframes/session/temporary_storage.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/bigframes/session/time.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/bigframes/session/validation.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/bigframes/streaming/__init__.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/bigframes/testing/compiler_session.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/bigframes/testing/engine_utils.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/bigframes/testing/mocks.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/bigframes/testing/polars_session.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/bigframes.egg-info/dependency_links.txt +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/bigframes.egg-info/not-zip-safe +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/bigframes.egg-info/top_level.txt +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/pyproject.toml +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/setup.cfg +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/tests/__init__.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/tests/benchmark/.gitignore +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/tests/benchmark/README.md +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/tests/benchmark/__init__.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/tests/benchmark/db_benchmark/groupby/config.jsonl +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/tests/benchmark/db_benchmark/groupby/q1.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/tests/benchmark/db_benchmark/groupby/q10.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/tests/benchmark/db_benchmark/groupby/q2.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/tests/benchmark/db_benchmark/groupby/q3.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/tests/benchmark/db_benchmark/groupby/q4.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/tests/benchmark/db_benchmark/groupby/q5.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/tests/benchmark/db_benchmark/groupby/q6.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/tests/benchmark/db_benchmark/groupby/q7.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/tests/benchmark/db_benchmark/groupby/q8.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/tests/benchmark/db_benchmark/join/config.jsonl +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/tests/benchmark/db_benchmark/join/q1.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/tests/benchmark/db_benchmark/join/q2.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/tests/benchmark/db_benchmark/join/q3.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/tests/benchmark/db_benchmark/join/q4.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/tests/benchmark/db_benchmark/join/q5.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/tests/benchmark/db_benchmark/sort/config.jsonl +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/tests/benchmark/db_benchmark/sort/q1.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/tests/benchmark/read_gbq_colab/aggregate_output.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/tests/benchmark/read_gbq_colab/config.jsonl +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/tests/benchmark/read_gbq_colab/dry_run.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/tests/benchmark/read_gbq_colab/filter_output.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/tests/benchmark/read_gbq_colab/first_page.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/tests/benchmark/read_gbq_colab/last_page.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/tests/benchmark/read_gbq_colab/sort_output.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/tests/benchmark/tpch/config.jsonl +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/tests/benchmark/tpch/q1.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/tests/benchmark/tpch/q10.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/tests/benchmark/tpch/q11.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/tests/benchmark/tpch/q12.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/tests/benchmark/tpch/q13.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/tests/benchmark/tpch/q14.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/tests/benchmark/tpch/q15.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/tests/benchmark/tpch/q16.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/tests/benchmark/tpch/q17.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/tests/benchmark/tpch/q18.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/tests/benchmark/tpch/q19.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/tests/benchmark/tpch/q2.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/tests/benchmark/tpch/q20.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/tests/benchmark/tpch/q21.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/tests/benchmark/tpch/q22.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/tests/benchmark/tpch/q3.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/tests/benchmark/tpch/q4.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/tests/benchmark/tpch/q5.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/tests/benchmark/tpch/q6.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/tests/benchmark/tpch/q7.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/tests/benchmark/tpch/q8.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/tests/benchmark/tpch/q9.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/tests/benchmark/utils.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/tests/data/hockey_players.json +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/tests/data/hockey_players.jsonl +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/tests/data/json.jsonl +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/tests/data/json_schema.json +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/tests/data/matrix_2by3.json +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/tests/data/matrix_2by3.jsonl +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/tests/data/matrix_3by4.json +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/tests/data/matrix_3by4.jsonl +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/tests/data/nested.jsonl +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/tests/data/nested_schema.json +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/tests/data/nested_structs.jsonl +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/tests/data/nested_structs_schema.json +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/tests/data/penguins.jsonl +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/tests/data/penguins_schema.json +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/tests/data/people.csv +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/tests/data/ratings.jsonl +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/tests/data/ratings_schema.json +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/tests/data/repeated.jsonl +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/tests/data/repeated_schema.json +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/tests/data/scalars.jsonl +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/tests/data/scalars_schema.json +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/tests/data/time_series.jsonl +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/tests/data/time_series_schema.json +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/tests/data/urban_areas.jsonl +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/tests/data/urban_areas_schema.json +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/tests/js/babel.config.cjs +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/tests/js/jest.config.cjs +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/tests/js/jest.setup.js +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/tests/js/package-lock.json +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/tests/js/package.json +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/tests/js/table_widget.test.js +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/tests/system/__init__.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/tests/system/conftest.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/tests/system/large/__init__.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/tests/system/large/bigquery/__init__.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/tests/system/large/bigquery/test_io.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/tests/system/large/bigquery/test_ml.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/tests/system/large/bigquery/test_obj.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/tests/system/large/bigquery/test_table.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/tests/system/large/blob/test_function.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/tests/system/large/functions/__init__.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/tests/system/large/ml/conftest.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/tests/system/large/ml/test_cluster.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/tests/system/large/ml/test_compose.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/tests/system/large/ml/test_core.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/tests/system/large/ml/test_decomposition.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/tests/system/large/ml/test_ensemble.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/tests/system/large/ml/test_forecasting.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/tests/system/large/ml/test_linear_model.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/tests/system/large/ml/test_model_selection.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/tests/system/large/ml/test_pipeline.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/tests/system/large/operations/__init__.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/tests/system/large/operations/conftest.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/tests/system/large/operations/test_ai.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/tests/system/large/operations/test_semantics.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/tests/system/large/streaming/test_bigtable.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/tests/system/large/streaming/test_pubsub.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/tests/system/large/test_dataframe.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/tests/system/large/test_dataframe_io.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/tests/system/large/test_location.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/tests/system/large/test_session.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/tests/system/load/conftest.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/tests/system/load/test_large_tables.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/tests/system/small/__init__.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/tests/system/small/bigquery/__init__.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/tests/system/small/bigquery/test_ai.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/tests/system/small/bigquery/test_approx_agg.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/tests/system/small/bigquery/test_json.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/tests/system/small/bigquery/test_vector_search.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/tests/system/small/blob/test_io.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/tests/system/small/blob/test_properties.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/tests/system/small/blob/test_urls.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/tests/system/small/core/__init__.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/tests/system/small/core/indexes/__init__.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/tests/system/small/core/indexes/test_base.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/tests/system/small/core/indexes/test_datetimes.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/tests/system/small/core/logging/__init__.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/tests/system/small/core/logging/test_data_types.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/tests/system/small/core/test_convert.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/tests/system/small/core/test_indexers.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/tests/system/small/engines/__init__.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/tests/system/small/engines/conftest.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/tests/system/small/engines/test_aggregation.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/tests/system/small/engines/test_array_ops.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/tests/system/small/engines/test_bool_ops.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/tests/system/small/engines/test_comparison_ops.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/tests/system/small/engines/test_concat.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/tests/system/small/engines/test_filtering.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/tests/system/small/engines/test_generic_ops.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/tests/system/small/engines/test_join.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/tests/system/small/engines/test_read_local.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/tests/system/small/engines/test_selection.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/tests/system/small/engines/test_slicing.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/tests/system/small/engines/test_sorting.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/tests/system/small/engines/test_strings.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/tests/system/small/engines/test_temporal_ops.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/tests/system/small/engines/test_windowing.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/tests/system/small/functions/__init__.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/tests/system/small/functions/test_remote_function.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/tests/system/small/geopandas/test_geoseries.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/tests/system/small/ml/__init__.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/tests/system/small/ml/conftest.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/tests/system/small/ml/test_cluster.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/tests/system/small/ml/test_core.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/tests/system/small/ml/test_decomposition.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/tests/system/small/ml/test_ensemble.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/tests/system/small/ml/test_forecasting.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/tests/system/small/ml/test_imported.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/tests/system/small/ml/test_impute.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/tests/system/small/ml/test_linear_model.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/tests/system/small/ml/test_metrics_pairwise.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/tests/system/small/ml/test_preprocessing.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/tests/system/small/ml/test_register.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/tests/system/small/ml/test_remote.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/tests/system/small/operations/__init__.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/tests/system/small/operations/test_ai.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/tests/system/small/operations/test_lists.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/tests/system/small/operations/test_plotting.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/tests/system/small/operations/test_semantics.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/tests/system/small/operations/test_strings.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/tests/system/small/operations/test_struct.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/tests/system/small/pandas/test_describe.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/tests/system/small/pandas/test_read_gbq_colab.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/tests/system/small/pandas/test_read_gbq_information_schema.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/tests/system/small/regression/test_issue355_merge_after_filter.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/tests/system/small/session/__init__.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/tests/system/small/session/test_read_gbq_colab.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/tests/system/small/session/test_read_gbq_query.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/tests/system/small/session/test_session_logging.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/tests/system/small/test_bq_sessions.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/tests/system/small/test_encryption.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/tests/system/small/test_index.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/tests/system/small/test_ipython.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/tests/system/small/test_large_local_data.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/tests/system/small/test_magics.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/tests/system/small/test_polars_execution.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/tests/system/small/test_scalar.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/tests/system/small/test_session_as_bpd.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/tests/unit/__init__.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/tests/unit/_config/__init__.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/tests/unit/_config/test_bigquery_options.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/tests/unit/_config/test_compute_options.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/tests/unit/_config/test_experiment_options.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/tests/unit/_config/test_threaded_options.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/tests/unit/_tools/__init__.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/tests/unit/_tools/test_strings.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/tests/unit/bigquery/__init__.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/tests/unit/bigquery/_operations/test_io.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/tests/unit/bigquery/test_json.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/tests/unit/bigquery/test_ml.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/tests/unit/bigquery/test_obj.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/tests/unit/bigquery/test_table.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/tests/unit/conftest.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/tests/unit/core/__init__.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/tests/unit/core/compile/__init__.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/tests/unit/core/compile/sqlglot/__init__.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/tests/unit/core/compile/sqlglot/aggregations/__init__.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/tests/unit/core/compile/sqlglot/aggregations/snapshots/test_unary_compiler/test_size_unary/out.sql +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/tests/unit/core/compile/sqlglot/aggregations/test_binary_compiler.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/tests/unit/core/compile/sqlglot/aggregations/test_nullary_compiler.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/tests/unit/core/compile/sqlglot/aggregations/test_op_registration.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/tests/unit/core/compile/sqlglot/aggregations/test_ordered_unary_compiler.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/tests/unit/core/compile/sqlglot/aggregations/test_unary_compiler.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/tests/unit/core/compile/sqlglot/aggregations/test_windows.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/tests/unit/core/compile/sqlglot/conftest.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/tests/unit/core/compile/sqlglot/expressions/__init__.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/tests/unit/core/compile/sqlglot/expressions/snapshots/test_datetime_ops/test_integer_label_to_datetime/out.sql +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/tests/unit/core/compile/sqlglot/expressions/test_ai_ops.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/tests/unit/core/compile/sqlglot/expressions/test_array_ops.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/tests/unit/core/compile/sqlglot/expressions/test_blob_ops.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/tests/unit/core/compile/sqlglot/expressions/test_bool_ops.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/tests/unit/core/compile/sqlglot/expressions/test_comparison_ops.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/tests/unit/core/compile/sqlglot/expressions/test_generic_ops.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/tests/unit/core/compile/sqlglot/expressions/test_geo_ops.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/tests/unit/core/compile/sqlglot/expressions/test_json_ops.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/tests/unit/core/compile/sqlglot/expressions/test_struct_ops.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/tests/unit/core/compile/sqlglot/expressions/test_timedelta_ops.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/tests/unit/core/compile/sqlglot/snapshots/test_compile_projection/test_compile_projection/out.sql +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/tests/unit/core/compile/sqlglot/snapshots/test_compile_readlocal/test_compile_readlocal/out.sql +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/tests/unit/core/compile/sqlglot/snapshots/test_compile_readlocal/test_compile_readlocal_w_json_df/out.sql +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/tests/unit/core/compile/sqlglot/snapshots/test_compile_readlocal/test_compile_readlocal_w_lists_df/out.sql +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/tests/unit/core/compile/sqlglot/snapshots/test_compile_readlocal/test_compile_readlocal_w_special_values/out.sql +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/tests/unit/core/compile/sqlglot/snapshots/test_compile_readlocal/test_compile_readlocal_w_structs_df/out.sql +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/tests/unit/core/compile/sqlglot/test_compile_aggregate.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/tests/unit/core/compile/sqlglot/test_compile_explode.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/tests/unit/core/compile/sqlglot/test_compile_filter.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/tests/unit/core/compile/sqlglot/test_compile_geo.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/tests/unit/core/compile/sqlglot/test_compile_isin.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/tests/unit/core/compile/sqlglot/test_compile_join.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/tests/unit/core/compile/sqlglot/test_compile_random_sample.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/tests/unit/core/compile/sqlglot/test_compile_readlocal.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/tests/unit/core/compile/sqlglot/test_compile_window.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/tests/unit/core/compile/sqlglot/test_sqlglot_types.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/tests/unit/core/logging/__init__.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/tests/unit/core/logging/test_data_types.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/tests/unit/core/logging/test_log_adapter.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/tests/unit/core/rewrite/test_slices.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/tests/unit/core/sql/snapshots/test_ml/test_create_model_basic/create_model_basic.sql +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/tests/unit/core/sql/snapshots/test_ml/test_create_model_if_not_exists/create_model_if_not_exists.sql +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/tests/unit/core/sql/snapshots/test_ml/test_create_model_list_option/create_model_list_option.sql +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/tests/unit/core/sql/snapshots/test_ml/test_create_model_remote/create_model_remote.sql +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/tests/unit/core/sql/snapshots/test_ml/test_create_model_remote_default/create_model_remote_default.sql +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/tests/unit/core/sql/snapshots/test_ml/test_create_model_replace/create_model_replace.sql +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/tests/unit/core/sql/snapshots/test_ml/test_create_model_training_data_and_holiday/create_model_training_data_and_holiday.sql +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/tests/unit/core/sql/snapshots/test_ml/test_create_model_transform/create_model_transform.sql +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/tests/unit/core/sql/snapshots/test_ml/test_evaluate_model_basic/evaluate_model_basic.sql +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/tests/unit/core/sql/snapshots/test_ml/test_evaluate_model_with_options/evaluate_model_with_options.sql +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/tests/unit/core/sql/snapshots/test_ml/test_evaluate_model_with_table/evaluate_model_with_table.sql +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/tests/unit/core/sql/snapshots/test_ml/test_explain_predict_model_basic/explain_predict_model_basic.sql +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/tests/unit/core/sql/snapshots/test_ml/test_explain_predict_model_with_options/explain_predict_model_with_options.sql +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/tests/unit/core/sql/snapshots/test_ml/test_generate_embedding_model_basic/generate_embedding_model_basic.sql +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/tests/unit/core/sql/snapshots/test_ml/test_generate_embedding_model_with_options/generate_embedding_model_with_options.sql +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/tests/unit/core/sql/snapshots/test_ml/test_generate_text_model_basic/generate_text_model_basic.sql +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/tests/unit/core/sql/snapshots/test_ml/test_generate_text_model_with_options/generate_text_model_with_options.sql +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/tests/unit/core/sql/snapshots/test_ml/test_global_explain_model_basic/global_explain_model_basic.sql +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/tests/unit/core/sql/snapshots/test_ml/test_global_explain_model_with_options/global_explain_model_with_options.sql +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/tests/unit/core/sql/snapshots/test_ml/test_predict_model_basic/predict_model_basic.sql +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/tests/unit/core/sql/snapshots/test_ml/test_predict_model_with_options/predict_model_with_options.sql +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/tests/unit/core/sql/snapshots/test_ml/test_transform_model_basic/transform_model_basic.sql +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/tests/unit/core/sql/test_io.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/tests/unit/core/sql/test_ml.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/tests/unit/core/test_bf_utils.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/tests/unit/core/test_blocks.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/tests/unit/core/test_expression.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/tests/unit/core/test_guid.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/tests/unit/core/test_ibis_types.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/tests/unit/core/test_indexes.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/tests/unit/core/test_pyarrow_utils.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/tests/unit/core/test_pyformat.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/tests/unit/core/test_slices.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/tests/unit/core/test_sql.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/tests/unit/core/test_windowspec.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/tests/unit/core/tools/__init__.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/tests/unit/core/tools/test_bigquery_schema.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/tests/unit/core/tools/test_datetimes.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/tests/unit/display/test_html.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/tests/unit/functions/__init__.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/tests/unit/functions/test_function_template.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/tests/unit/functions/test_function_typing.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/tests/unit/functions/test_remote_function.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/tests/unit/ml/__init__.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/tests/unit/ml/test_api_primitives.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/tests/unit/ml/test_compose.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/tests/unit/ml/test_forecasting.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/tests/unit/ml/test_golden_sql.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/tests/unit/ml/test_matrix_factorization.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/tests/unit/ml/test_pipeline.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/tests/unit/ml/test_sql.py +0 -0
- {bigframes-2.35.0/tests/unit/core/compile/googlesql → bigframes-2.37.0/tests/unit/operations}/__init__.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/tests/unit/operations/test_output_schemas.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/tests/unit/pandas/io/test_api.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/tests/unit/session/__init__.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/tests/unit/session/test_clients.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/tests/unit/session/test_io_arrow.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/tests/unit/session/test_io_bigquery.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/tests/unit/session/test_io_pandas.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/tests/unit/session/test_local_scan_executor.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/tests/unit/session/test_metrics.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/tests/unit/session/test_read_gbq_colab.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/tests/unit/session/test_read_gbq_query.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/tests/unit/session/test_time.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/tests/unit/test_clients.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/tests/unit/test_constants.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/tests/unit/test_daemon.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/tests/unit/test_dataframe.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/tests/unit/test_dataframe_io.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/tests/unit/test_dtypes.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/tests/unit/test_features.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/tests/unit/test_formatting_helpers.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/tests/unit/test_index.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/tests/unit/test_interchange.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/tests/unit/test_local_data.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/tests/unit/test_local_engine.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/tests/unit/test_notebook.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/tests/unit/test_pandas.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/tests/unit/test_sequences.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/tests/unit/test_series.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/tests/unit/test_series_io.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/tests/unit/test_series_struct.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/__init__.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/constants.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/cpython/LICENSE +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/cpython/__init__.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/cpython/_pprint.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/db_benchmark/LICENSE +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/db_benchmark/METADATA +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/db_benchmark/README.md +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/db_benchmark/__init__.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/db_benchmark/groupby_queries.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/db_benchmark/join_queries.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/db_benchmark/sort_queries.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/geopandas/LICENSE.txt +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/geopandas/geoseries.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/google_cloud_bigquery/LICENSE +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/google_cloud_bigquery/__init__.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/google_cloud_bigquery/_pandas_helpers.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/google_cloud_bigquery/retry.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/google_cloud_bigquery/tests/__init__.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/google_cloud_bigquery/tests/unit/__init__.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/google_cloud_bigquery/tests/unit/test_pandas_helpers.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/ibis/LICENSE.txt +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/ibis/README.md +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/ibis/__init__.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/ibis/backends/__init__.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/ibis/backends/bigquery/__init__.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/ibis/backends/bigquery/backend.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/ibis/backends/bigquery/client.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/ibis/backends/bigquery/converter.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/ibis/backends/bigquery/datatypes.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/ibis/backends/bigquery/udf/__init__.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/ibis/backends/bigquery/udf/core.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/ibis/backends/bigquery/udf/find.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/ibis/backends/bigquery/udf/rewrite.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/ibis/backends/sql/__init__.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/ibis/backends/sql/compilers/__init__.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/ibis/backends/sql/compilers/base.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/ibis/backends/sql/compilers/bigquery/__init__.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/ibis/backends/sql/datatypes.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/ibis/backends/sql/rewrites.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/ibis/common/__init__.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/ibis/common/annotations.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/ibis/common/bases.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/ibis/common/caching.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/ibis/common/collections.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/ibis/common/deferred.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/ibis/common/dispatch.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/ibis/common/egraph.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/ibis/common/exceptions.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/ibis/common/graph.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/ibis/common/grounds.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/ibis/common/numeric.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/ibis/common/patterns.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/ibis/common/selectors.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/ibis/common/temporal.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/ibis/common/typing.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/ibis/config.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/ibis/expr/__init__.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/ibis/expr/api.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/ibis/expr/builders.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/ibis/expr/datashape.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/ibis/expr/datatypes/__init__.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/ibis/expr/datatypes/cast.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/ibis/expr/datatypes/core.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/ibis/expr/datatypes/value.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/ibis/expr/decompile.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/ibis/expr/format.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/ibis/expr/operations/__init__.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/ibis/expr/operations/ai_ops.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/ibis/expr/operations/analytic.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/ibis/expr/operations/arrays.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/ibis/expr/operations/core.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/ibis/expr/operations/generic.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/ibis/expr/operations/geospatial.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/ibis/expr/operations/histograms.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/ibis/expr/operations/json.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/ibis/expr/operations/logical.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/ibis/expr/operations/maps.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/ibis/expr/operations/reductions.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/ibis/expr/operations/relations.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/ibis/expr/operations/sortkeys.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/ibis/expr/operations/strings.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/ibis/expr/operations/structs.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/ibis/expr/operations/subqueries.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/ibis/expr/operations/temporal.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/ibis/expr/operations/udf.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/ibis/expr/operations/window.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/ibis/expr/rewrites.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/ibis/expr/rules.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/ibis/expr/schema.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/ibis/expr/sql.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/ibis/expr/types/__init__.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/ibis/expr/types/arrays.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/ibis/expr/types/binary.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/ibis/expr/types/core.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/ibis/expr/types/dataframe_interchange.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/ibis/expr/types/generic.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/ibis/expr/types/geospatial.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/ibis/expr/types/groupby.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/ibis/expr/types/joins.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/ibis/expr/types/json.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/ibis/expr/types/logical.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/ibis/expr/types/maps.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/ibis/expr/types/numeric.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/ibis/expr/types/pretty.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/ibis/expr/types/relations.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/ibis/expr/types/strings.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/ibis/expr/types/structs.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/ibis/expr/types/temporal.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/ibis/expr/types/temporal_windows.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/ibis/expr/types/typing.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/ibis/expr/types/uuid.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/ibis/expr/visualize.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/ibis/formats/__init__.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/ibis/formats/numpy.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/ibis/formats/pandas.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/ibis/formats/polars.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/ibis/formats/pyarrow.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/ibis/selectors.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/ibis/util.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/pandas/AUTHORS.md +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/pandas/LICENSE +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/pandas/README.md +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/pandas/__init__.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/pandas/_config/config.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/pandas/core/arrays/__init__.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/pandas/core/arrays/arrow/__init__.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/pandas/core/arrays/arrow/accessors.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/pandas/core/arrays/datetimelike.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/pandas/core/col.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/pandas/core/common.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/pandas/core/computation/common.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/pandas/core/computation/engines.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/pandas/core/computation/expr.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/pandas/core/computation/ops.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/pandas/core/computation/parsing.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/pandas/core/computation/scope.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/pandas/core/dtypes/inference.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/pandas/core/groupby/__init__.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/pandas/core/indexes/__init__.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/pandas/core/indexes/base.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/pandas/core/indexes/datetimes.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/pandas/core/indexes/multi.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/pandas/core/indexing.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/pandas/core/reshape/__init__.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/pandas/core/reshape/concat.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/pandas/core/reshape/encoding.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/pandas/core/reshape/merge.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/pandas/core/reshape/pivot.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/pandas/core/reshape/tile.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/pandas/core/strings/accessor.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/pandas/core/tools/__init__.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/pandas/core/tools/datetimes.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/pandas/core/tools/timedeltas.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/pandas/core/window/__init__.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/pandas/core/window/rolling.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/pandas/io/__init__.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/pandas/io/common.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/pandas/io/gbq.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/pandas/io/parquet.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/pandas/io/parsers/__init__.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/pandas/io/parsers/readers.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/pandas/io/pickle.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/pandas/pandas/_typing.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/pandas/plotting/_core.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/pandas/util/_exceptions.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/pandas/util/_validators.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/py.typed +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/sklearn/COPYING +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/sklearn/__init__.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/sklearn/base.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/sklearn/cluster/_kmeans.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/sklearn/compose/_column_transformer.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/sklearn/decomposition/_mf.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/sklearn/decomposition/_pca.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/sklearn/ensemble/__init__.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/sklearn/ensemble/_forest.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/sklearn/impute/_base.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/sklearn/linear_model/_base.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/sklearn/linear_model/_logistic.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/sklearn/metrics/_ranking.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/sklearn/metrics/_regression.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/sklearn/metrics/pairwise.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/sklearn/model_selection/_split.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/sklearn/model_selection/_validation.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/sklearn/pipeline.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/sklearn/preprocessing/_data.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/sklearn/preprocessing/_discretization.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/sklearn/preprocessing/_label.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/sklearn/preprocessing/_polynomial.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/sqlglot/LICENSE +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/sqlglot/__init__.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/sqlglot/dialects/__init__.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/sqlglot/dialects/bigquery.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/sqlglot/dialects/dialect.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/sqlglot/diff.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/sqlglot/errors.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/sqlglot/expressions.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/sqlglot/helper.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/sqlglot/jsonpath.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/sqlglot/lineage.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/sqlglot/optimizer/__init__.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/sqlglot/optimizer/annotate_types.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/sqlglot/optimizer/canonicalize.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/sqlglot/optimizer/eliminate_ctes.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/sqlglot/optimizer/eliminate_joins.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/sqlglot/optimizer/eliminate_subqueries.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/sqlglot/optimizer/isolate_table_selects.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/sqlglot/optimizer/merge_subqueries.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/sqlglot/optimizer/normalize.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/sqlglot/optimizer/normalize_identifiers.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/sqlglot/optimizer/optimize_joins.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/sqlglot/optimizer/optimizer.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/sqlglot/optimizer/pushdown_predicates.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/sqlglot/optimizer/pushdown_projections.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/sqlglot/optimizer/qualify.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/sqlglot/optimizer/qualify_columns.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/sqlglot/optimizer/qualify_tables.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/sqlglot/optimizer/resolver.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/sqlglot/optimizer/scope.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/sqlglot/optimizer/simplify.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/sqlglot/optimizer/unnest_subqueries.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/sqlglot/parser.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/sqlglot/planner.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/sqlglot/py.typed +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/sqlglot/schema.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/sqlglot/serde.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/sqlglot/time.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/sqlglot/tokens.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/sqlglot/transforms.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/sqlglot/trie.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/sqlglot/typing/__init__.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/sqlglot/typing/bigquery.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/tpch/LICENSE +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/tpch/METADATA +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/tpch/README.md +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/tpch/TPC-EULA.txt +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/tpch/__init__.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/tpch/queries/__init__.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/tpch/queries/q1.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/tpch/queries/q10.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/tpch/queries/q11.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/tpch/queries/q12.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/tpch/queries/q13.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/tpch/queries/q14.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/tpch/queries/q15.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/tpch/queries/q16.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/tpch/queries/q17.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/tpch/queries/q18.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/tpch/queries/q19.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/tpch/queries/q2.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/tpch/queries/q20.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/tpch/queries/q21.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/tpch/queries/q22.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/tpch/queries/q3.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/tpch/queries/q4.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/tpch/queries/q5.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/tpch/queries/q6.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/tpch/queries/q7.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/tpch/queries/q8.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/tpch/queries/q9.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/tpch/sql_queries/q1.sql +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/tpch/sql_queries/q10.sql +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/tpch/sql_queries/q11.sql +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/tpch/sql_queries/q12.sql +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/tpch/sql_queries/q13.sql +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/tpch/sql_queries/q14.sql +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/tpch/sql_queries/q15.sql +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/tpch/sql_queries/q16.sql +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/tpch/sql_queries/q17.sql +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/tpch/sql_queries/q18.sql +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/tpch/sql_queries/q19.sql +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/tpch/sql_queries/q2.sql +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/tpch/sql_queries/q20.sql +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/tpch/sql_queries/q21.sql +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/tpch/sql_queries/q22.sql +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/tpch/sql_queries/q3.sql +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/tpch/sql_queries/q4.sql +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/tpch/sql_queries/q5.sql +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/tpch/sql_queries/q6.sql +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/tpch/sql_queries/q7.sql +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/tpch/sql_queries/q8.sql +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/tpch/sql_queries/q9.sql +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/xgboost/LICENSE +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/xgboost/__init__.py +0 -0
- {bigframes-2.35.0 → bigframes-2.37.0}/third_party/bigframes_vendored/xgboost/sklearn.py +0 -0
|
@@ -0,0 +1,198 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: bigframes
|
|
3
|
+
Version: 2.37.0
|
|
4
|
+
Summary: BigQuery DataFrames -- scalable analytics and machine learning with BigQuery
|
|
5
|
+
Home-page: https://dataframes.bigquery.dev
|
|
6
|
+
Download-URL: https://github.com/googleapis/python-bigquery-dataframes/releases
|
|
7
|
+
Author: Google LLC
|
|
8
|
+
Author-email: bigframes-feedback@google.com
|
|
9
|
+
License: Apache 2.0
|
|
10
|
+
Project-URL: Source, https://github.com/googleapis/python-bigquery-dataframes
|
|
11
|
+
Project-URL: Changelog, https://dataframes.bigquery.dev/changelog.html
|
|
12
|
+
Project-URL: Issues, https://github.com/googleapis/python-bigquery-dataframes/issues
|
|
13
|
+
Platform: Posix; MacOS X; Windows
|
|
14
|
+
Classifier: Development Status :: 5 - Production/Stable
|
|
15
|
+
Classifier: Intended Audience :: Developers
|
|
16
|
+
Classifier: License :: OSI Approved :: Apache Software License
|
|
17
|
+
Classifier: Programming Language :: Python
|
|
18
|
+
Classifier: Programming Language :: Python :: 3
|
|
19
|
+
Classifier: Programming Language :: Python :: 3.10
|
|
20
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
21
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
22
|
+
Classifier: Programming Language :: Python :: 3.13
|
|
23
|
+
Classifier: Programming Language :: Python :: 3.14
|
|
24
|
+
Classifier: Operating System :: OS Independent
|
|
25
|
+
Classifier: Topic :: Internet
|
|
26
|
+
Requires-Python: >=3.10
|
|
27
|
+
Description-Content-Type: text/x-rst
|
|
28
|
+
License-File: LICENSE
|
|
29
|
+
Requires-Dist: cloudpickle>=2.0.0
|
|
30
|
+
Requires-Dist: fsspec>=2023.3.0
|
|
31
|
+
Requires-Dist: gcsfs!=2025.5.0,!=2026.2.0,>=2023.3.0
|
|
32
|
+
Requires-Dist: geopandas>=0.12.2
|
|
33
|
+
Requires-Dist: google-auth<3.0,>=2.15.0
|
|
34
|
+
Requires-Dist: google-cloud-bigquery[bqstorage,pandas]>=3.36.0
|
|
35
|
+
Requires-Dist: google-cloud-bigquery-storage<3.0.0,>=2.30.0
|
|
36
|
+
Requires-Dist: google-cloud-functions>=1.12.0
|
|
37
|
+
Requires-Dist: google-cloud-bigquery-connection>=1.12.0
|
|
38
|
+
Requires-Dist: google-cloud-resource-manager>=1.10.3
|
|
39
|
+
Requires-Dist: google-cloud-storage>=2.0.0
|
|
40
|
+
Requires-Dist: grpc-google-iam-v1>=0.14.2
|
|
41
|
+
Requires-Dist: numpy>=1.24.0
|
|
42
|
+
Requires-Dist: pandas>=1.5.3
|
|
43
|
+
Requires-Dist: pandas-gbq>=0.26.1
|
|
44
|
+
Requires-Dist: pyarrow>=15.0.2
|
|
45
|
+
Requires-Dist: pydata-google-auth>=1.8.2
|
|
46
|
+
Requires-Dist: requests>=2.27.1
|
|
47
|
+
Requires-Dist: shapely>=1.8.5
|
|
48
|
+
Requires-Dist: tabulate>=0.9
|
|
49
|
+
Requires-Dist: humanize>=4.6.0
|
|
50
|
+
Requires-Dist: matplotlib>=3.7.1
|
|
51
|
+
Requires-Dist: db-dtypes>=1.4.2
|
|
52
|
+
Requires-Dist: pyiceberg>=0.7.1
|
|
53
|
+
Requires-Dist: atpublic<6,>=2.3
|
|
54
|
+
Requires-Dist: python-dateutil<3,>=2.8.2
|
|
55
|
+
Requires-Dist: pytz>=2022.7
|
|
56
|
+
Requires-Dist: toolz<2,>=0.11
|
|
57
|
+
Requires-Dist: typing-extensions<5,>=4.5.0
|
|
58
|
+
Requires-Dist: rich<14,>=12.4.4
|
|
59
|
+
Provides-Extra: tests
|
|
60
|
+
Requires-Dist: freezegun; extra == "tests"
|
|
61
|
+
Requires-Dist: pytest-snapshot; extra == "tests"
|
|
62
|
+
Requires-Dist: google-cloud-bigtable>=2.24.0; extra == "tests"
|
|
63
|
+
Requires-Dist: google-cloud-pubsub>=2.21.4; extra == "tests"
|
|
64
|
+
Provides-Extra: polars
|
|
65
|
+
Requires-Dist: polars>=1.21.0; extra == "polars"
|
|
66
|
+
Provides-Extra: scikit-learn
|
|
67
|
+
Requires-Dist: scikit-learn>=1.2.2; extra == "scikit-learn"
|
|
68
|
+
Provides-Extra: dev
|
|
69
|
+
Requires-Dist: pytest; extra == "dev"
|
|
70
|
+
Requires-Dist: pre-commit; extra == "dev"
|
|
71
|
+
Requires-Dist: nox; extra == "dev"
|
|
72
|
+
Requires-Dist: google-cloud-testutils; extra == "dev"
|
|
73
|
+
Provides-Extra: anywidget
|
|
74
|
+
Requires-Dist: anywidget>=0.9.18; extra == "anywidget"
|
|
75
|
+
Requires-Dist: traitlets>=5.0.0; extra == "anywidget"
|
|
76
|
+
Provides-Extra: all
|
|
77
|
+
Requires-Dist: anywidget>=0.9.18; extra == "all"
|
|
78
|
+
Requires-Dist: freezegun; extra == "all"
|
|
79
|
+
Requires-Dist: google-cloud-bigtable>=2.24.0; extra == "all"
|
|
80
|
+
Requires-Dist: google-cloud-pubsub>=2.21.4; extra == "all"
|
|
81
|
+
Requires-Dist: google-cloud-testutils; extra == "all"
|
|
82
|
+
Requires-Dist: nox; extra == "all"
|
|
83
|
+
Requires-Dist: polars>=1.21.0; extra == "all"
|
|
84
|
+
Requires-Dist: pre-commit; extra == "all"
|
|
85
|
+
Requires-Dist: pytest; extra == "all"
|
|
86
|
+
Requires-Dist: pytest-snapshot; extra == "all"
|
|
87
|
+
Requires-Dist: scikit-learn>=1.2.2; extra == "all"
|
|
88
|
+
Requires-Dist: traitlets>=5.0.0; extra == "all"
|
|
89
|
+
Dynamic: author
|
|
90
|
+
Dynamic: author-email
|
|
91
|
+
Dynamic: classifier
|
|
92
|
+
Dynamic: description
|
|
93
|
+
Dynamic: description-content-type
|
|
94
|
+
Dynamic: download-url
|
|
95
|
+
Dynamic: home-page
|
|
96
|
+
Dynamic: license
|
|
97
|
+
Dynamic: license-file
|
|
98
|
+
Dynamic: platform
|
|
99
|
+
Dynamic: project-url
|
|
100
|
+
Dynamic: provides-extra
|
|
101
|
+
Dynamic: requires-dist
|
|
102
|
+
Dynamic: requires-python
|
|
103
|
+
Dynamic: summary
|
|
104
|
+
|
|
105
|
+
BigQuery DataFrames (BigFrames)
|
|
106
|
+
===============================
|
|
107
|
+
|
|
108
|
+
|
|
109
|
+
|GA| |pypi| |versions|
|
|
110
|
+
|
|
111
|
+
BigQuery DataFrames (also known as BigFrames) provides a Pythonic DataFrame
|
|
112
|
+
and machine learning (ML) API powered by the BigQuery engine. It provides modules
|
|
113
|
+
for many use cases, including:
|
|
114
|
+
|
|
115
|
+
* `bigframes.pandas <https://dataframes.bigquery.dev/reference/api/bigframes.pandas.html>`_
|
|
116
|
+
is a pandas API for analytics. Many workloads can be
|
|
117
|
+
migrated from pandas to bigframes by just changing a few imports.
|
|
118
|
+
* `bigframes.ml <https://dataframes.bigquery.dev/reference/index.html#ml-apis>`_
|
|
119
|
+
is a scikit-learn-like API for ML.
|
|
120
|
+
* `bigframes.bigquery.ai <https://dataframes.bigquery.dev/reference/api/bigframes.bigquery.ai.html>`_
|
|
121
|
+
are a collection of powerful AI methods, powered by Gemini.
|
|
122
|
+
|
|
123
|
+
BigQuery DataFrames is an `open-source package <https://github.com/googleapis/python-bigquery-dataframes>`_.
|
|
124
|
+
|
|
125
|
+
.. |GA| image:: https://img.shields.io/badge/support-GA-gold.svg
|
|
126
|
+
:target: https://github.com/googleapis/google-cloud-python/blob/main/README.rst#general-availability
|
|
127
|
+
.. |pypi| image:: https://img.shields.io/pypi/v/bigframes.svg
|
|
128
|
+
:target: https://pypi.org/project/bigframes/
|
|
129
|
+
.. |versions| image:: https://img.shields.io/pypi/pyversions/bigframes.svg
|
|
130
|
+
:target: https://pypi.org/project/bigframes/
|
|
131
|
+
|
|
132
|
+
Getting started with BigQuery DataFrames
|
|
133
|
+
----------------------------------------
|
|
134
|
+
|
|
135
|
+
The easiest way to get started is to try the
|
|
136
|
+
`BigFrames quickstart <https://cloud.google.com/bigquery/docs/dataframes-quickstart>`_
|
|
137
|
+
in a `notebook in BigQuery Studio <https://cloud.google.com/bigquery/docs/notebooks-introduction>`_.
|
|
138
|
+
|
|
139
|
+
To use BigFrames in your local development environment,
|
|
140
|
+
|
|
141
|
+
1. Run ``pip install --upgrade bigframes`` to install the latest version.
|
|
142
|
+
|
|
143
|
+
2. Setup `Application default credentials <https://cloud.google.com/docs/authentication/set-up-adc-local-dev-environment>`_
|
|
144
|
+
for your local development environment enviroment.
|
|
145
|
+
|
|
146
|
+
3. Create a `GCP project with the BigQuery API enabled <https://cloud.google.com/bigquery/docs/sandbox>`_.
|
|
147
|
+
|
|
148
|
+
4. Use the ``bigframes`` package to query data.
|
|
149
|
+
|
|
150
|
+
.. code-block:: python
|
|
151
|
+
|
|
152
|
+
import bigframes.pandas as bpd
|
|
153
|
+
|
|
154
|
+
bpd.options.bigquery.project = your_gcp_project_id # Optional in BQ Studio.
|
|
155
|
+
bpd.options.bigquery.ordering_mode = "partial" # Recommended for performance.
|
|
156
|
+
df = bpd.read_gbq("bigquery-public-data.usa_names.usa_1910_2013")
|
|
157
|
+
print(
|
|
158
|
+
df.groupby("name")
|
|
159
|
+
.agg({"number": "sum"})
|
|
160
|
+
.sort_values("number", ascending=False)
|
|
161
|
+
.head(10)
|
|
162
|
+
.to_pandas()
|
|
163
|
+
)
|
|
164
|
+
|
|
165
|
+
Documentation
|
|
166
|
+
-------------
|
|
167
|
+
|
|
168
|
+
To learn more about BigQuery DataFrames, visit these pages
|
|
169
|
+
|
|
170
|
+
* `Introduction to BigQuery DataFrames (BigFrames) <https://cloud.google.com/bigquery/docs/bigquery-dataframes-introduction>`_
|
|
171
|
+
* `Sample notebooks <https://github.com/googleapis/python-bigquery-dataframes/tree/main/notebooks>`_
|
|
172
|
+
* `API reference <https://dataframes.bigquery.dev/>`_
|
|
173
|
+
* `Source code (GitHub) <https://github.com/googleapis/python-bigquery-dataframes>`_
|
|
174
|
+
|
|
175
|
+
License
|
|
176
|
+
-------
|
|
177
|
+
|
|
178
|
+
BigQuery DataFrames is distributed with the `Apache-2.0 license
|
|
179
|
+
<https://github.com/googleapis/python-bigquery-dataframes/blob/main/LICENSE>`_.
|
|
180
|
+
|
|
181
|
+
It also contains code derived from the following third-party packages:
|
|
182
|
+
|
|
183
|
+
* `Ibis <https://ibis-project.org/>`_
|
|
184
|
+
* `pandas <https://pandas.pydata.org/>`_
|
|
185
|
+
* `Python <https://www.python.org/>`_
|
|
186
|
+
* `scikit-learn <https://scikit-learn.org/>`_
|
|
187
|
+
* `XGBoost <https://xgboost.readthedocs.io/en/stable/>`_
|
|
188
|
+
* `SQLGlot <https://sqlglot.com/sqlglot.html>`_
|
|
189
|
+
|
|
190
|
+
For details, see the `third_party
|
|
191
|
+
<https://github.com/googleapis/python-bigquery-dataframes/tree/main/third_party/bigframes_vendored>`_
|
|
192
|
+
directory.
|
|
193
|
+
|
|
194
|
+
|
|
195
|
+
Contact Us
|
|
196
|
+
----------
|
|
197
|
+
|
|
198
|
+
For further help and provide feedback, you can email us at `bigframes-feedback@google.com <https://mail.google.com/mail/?view=cm&fs=1&tf=1&to=bigframes-feedback@google.com>`_.
|
|
@@ -0,0 +1,94 @@
|
|
|
1
|
+
BigQuery DataFrames (BigFrames)
|
|
2
|
+
===============================
|
|
3
|
+
|
|
4
|
+
|
|
5
|
+
|GA| |pypi| |versions|
|
|
6
|
+
|
|
7
|
+
BigQuery DataFrames (also known as BigFrames) provides a Pythonic DataFrame
|
|
8
|
+
and machine learning (ML) API powered by the BigQuery engine. It provides modules
|
|
9
|
+
for many use cases, including:
|
|
10
|
+
|
|
11
|
+
* `bigframes.pandas <https://dataframes.bigquery.dev/reference/api/bigframes.pandas.html>`_
|
|
12
|
+
is a pandas API for analytics. Many workloads can be
|
|
13
|
+
migrated from pandas to bigframes by just changing a few imports.
|
|
14
|
+
* `bigframes.ml <https://dataframes.bigquery.dev/reference/index.html#ml-apis>`_
|
|
15
|
+
is a scikit-learn-like API for ML.
|
|
16
|
+
* `bigframes.bigquery.ai <https://dataframes.bigquery.dev/reference/api/bigframes.bigquery.ai.html>`_
|
|
17
|
+
are a collection of powerful AI methods, powered by Gemini.
|
|
18
|
+
|
|
19
|
+
BigQuery DataFrames is an `open-source package <https://github.com/googleapis/python-bigquery-dataframes>`_.
|
|
20
|
+
|
|
21
|
+
.. |GA| image:: https://img.shields.io/badge/support-GA-gold.svg
|
|
22
|
+
:target: https://github.com/googleapis/google-cloud-python/blob/main/README.rst#general-availability
|
|
23
|
+
.. |pypi| image:: https://img.shields.io/pypi/v/bigframes.svg
|
|
24
|
+
:target: https://pypi.org/project/bigframes/
|
|
25
|
+
.. |versions| image:: https://img.shields.io/pypi/pyversions/bigframes.svg
|
|
26
|
+
:target: https://pypi.org/project/bigframes/
|
|
27
|
+
|
|
28
|
+
Getting started with BigQuery DataFrames
|
|
29
|
+
----------------------------------------
|
|
30
|
+
|
|
31
|
+
The easiest way to get started is to try the
|
|
32
|
+
`BigFrames quickstart <https://cloud.google.com/bigquery/docs/dataframes-quickstart>`_
|
|
33
|
+
in a `notebook in BigQuery Studio <https://cloud.google.com/bigquery/docs/notebooks-introduction>`_.
|
|
34
|
+
|
|
35
|
+
To use BigFrames in your local development environment,
|
|
36
|
+
|
|
37
|
+
1. Run ``pip install --upgrade bigframes`` to install the latest version.
|
|
38
|
+
|
|
39
|
+
2. Setup `Application default credentials <https://cloud.google.com/docs/authentication/set-up-adc-local-dev-environment>`_
|
|
40
|
+
for your local development environment enviroment.
|
|
41
|
+
|
|
42
|
+
3. Create a `GCP project with the BigQuery API enabled <https://cloud.google.com/bigquery/docs/sandbox>`_.
|
|
43
|
+
|
|
44
|
+
4. Use the ``bigframes`` package to query data.
|
|
45
|
+
|
|
46
|
+
.. code-block:: python
|
|
47
|
+
|
|
48
|
+
import bigframes.pandas as bpd
|
|
49
|
+
|
|
50
|
+
bpd.options.bigquery.project = your_gcp_project_id # Optional in BQ Studio.
|
|
51
|
+
bpd.options.bigquery.ordering_mode = "partial" # Recommended for performance.
|
|
52
|
+
df = bpd.read_gbq("bigquery-public-data.usa_names.usa_1910_2013")
|
|
53
|
+
print(
|
|
54
|
+
df.groupby("name")
|
|
55
|
+
.agg({"number": "sum"})
|
|
56
|
+
.sort_values("number", ascending=False)
|
|
57
|
+
.head(10)
|
|
58
|
+
.to_pandas()
|
|
59
|
+
)
|
|
60
|
+
|
|
61
|
+
Documentation
|
|
62
|
+
-------------
|
|
63
|
+
|
|
64
|
+
To learn more about BigQuery DataFrames, visit these pages
|
|
65
|
+
|
|
66
|
+
* `Introduction to BigQuery DataFrames (BigFrames) <https://cloud.google.com/bigquery/docs/bigquery-dataframes-introduction>`_
|
|
67
|
+
* `Sample notebooks <https://github.com/googleapis/python-bigquery-dataframes/tree/main/notebooks>`_
|
|
68
|
+
* `API reference <https://dataframes.bigquery.dev/>`_
|
|
69
|
+
* `Source code (GitHub) <https://github.com/googleapis/python-bigquery-dataframes>`_
|
|
70
|
+
|
|
71
|
+
License
|
|
72
|
+
-------
|
|
73
|
+
|
|
74
|
+
BigQuery DataFrames is distributed with the `Apache-2.0 license
|
|
75
|
+
<https://github.com/googleapis/python-bigquery-dataframes/blob/main/LICENSE>`_.
|
|
76
|
+
|
|
77
|
+
It also contains code derived from the following third-party packages:
|
|
78
|
+
|
|
79
|
+
* `Ibis <https://ibis-project.org/>`_
|
|
80
|
+
* `pandas <https://pandas.pydata.org/>`_
|
|
81
|
+
* `Python <https://www.python.org/>`_
|
|
82
|
+
* `scikit-learn <https://scikit-learn.org/>`_
|
|
83
|
+
* `XGBoost <https://xgboost.readthedocs.io/en/stable/>`_
|
|
84
|
+
* `SQLGlot <https://sqlglot.com/sqlglot.html>`_
|
|
85
|
+
|
|
86
|
+
For details, see the `third_party
|
|
87
|
+
<https://github.com/googleapis/python-bigquery-dataframes/tree/main/third_party/bigframes_vendored>`_
|
|
88
|
+
directory.
|
|
89
|
+
|
|
90
|
+
|
|
91
|
+
Contact Us
|
|
92
|
+
----------
|
|
93
|
+
|
|
94
|
+
For further help and provide feedback, you can email us at `bigframes-feedback@google.com <https://mail.google.com/mail/?view=cm&fs=1&tf=1&to=bigframes-feedback@google.com>`_.
|
|
@@ -0,0 +1,57 @@
|
|
|
1
|
+
# Copyright 2025 Google LLC
|
|
2
|
+
#
|
|
3
|
+
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
4
|
+
# you may not use this file except in compliance with the License.
|
|
5
|
+
# You may obtain a copy of the License at
|
|
6
|
+
#
|
|
7
|
+
# http://www.apache.org/licenses/LICENSE-2.0
|
|
8
|
+
#
|
|
9
|
+
# Unless required by applicable law or agreed to in writing, software
|
|
10
|
+
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
11
|
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
12
|
+
# See the License for the specific language governing permissions and
|
|
13
|
+
# limitations under the License.
|
|
14
|
+
|
|
15
|
+
from __future__ import annotations
|
|
16
|
+
|
|
17
|
+
import threading
|
|
18
|
+
from typing import Optional
|
|
19
|
+
|
|
20
|
+
import google.auth.credentials
|
|
21
|
+
import google.auth.transport.requests
|
|
22
|
+
import pydata_google_auth
|
|
23
|
+
|
|
24
|
+
_SCOPES = ["https://www.googleapis.com/auth/cloud-platform"]
|
|
25
|
+
|
|
26
|
+
# Put the lock here rather than in BigQueryOptions so that BigQueryOptions
|
|
27
|
+
# remains deepcopy-able.
|
|
28
|
+
_AUTH_LOCK = threading.Lock()
|
|
29
|
+
_cached_credentials: Optional[google.auth.credentials.Credentials] = None
|
|
30
|
+
_cached_project_default: Optional[str] = None
|
|
31
|
+
|
|
32
|
+
|
|
33
|
+
def get_default_credentials_with_project() -> (
|
|
34
|
+
tuple[google.auth.credentials.Credentials, Optional[str]]
|
|
35
|
+
):
|
|
36
|
+
global _AUTH_LOCK, _cached_credentials, _cached_project_default
|
|
37
|
+
|
|
38
|
+
with _AUTH_LOCK:
|
|
39
|
+
if _cached_credentials is not None:
|
|
40
|
+
return _cached_credentials, _cached_project_default
|
|
41
|
+
|
|
42
|
+
_cached_credentials, _cached_project_default = pydata_google_auth.default(
|
|
43
|
+
scopes=_SCOPES, use_local_webserver=False
|
|
44
|
+
)
|
|
45
|
+
|
|
46
|
+
# Ensure an access token is available.
|
|
47
|
+
_cached_credentials.refresh(google.auth.transport.requests.Request())
|
|
48
|
+
|
|
49
|
+
return _cached_credentials, _cached_project_default
|
|
50
|
+
|
|
51
|
+
|
|
52
|
+
def reset_default_credentials_and_project():
|
|
53
|
+
global _AUTH_LOCK, _cached_credentials, _cached_project_default
|
|
54
|
+
|
|
55
|
+
with _AUTH_LOCK:
|
|
56
|
+
_cached_credentials = None
|
|
57
|
+
_cached_project_default = None
|