bigframes 1.41.0__tar.gz → 2.0.0.dev0__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {bigframes-1.41.0/bigframes.egg-info → bigframes-2.0.0.dev0}/PKG-INFO +28 -3
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/README.rst +24 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/bigframes/_config/bigquery_options.py +13 -14
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/bigframes/_config/compute_options.py +19 -4
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/bigframes/_config/experiment_options.py +16 -17
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/bigframes/bigquery/__init__.py +3 -1
- bigframes-2.0.0.dev0/bigframes/bigquery/_operations/geo.py +305 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/bigframes/blob/_functions.py +78 -63
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/bigframes/clients.py +64 -25
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/bigframes/constants.py +17 -12
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/bigframes/core/block_transforms.py +3 -3
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/bigframes/core/blocks.py +101 -19
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/bigframes/core/compile/aggregate_compiler.py +49 -45
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/bigframes/core/compile/compiled.py +38 -15
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/bigframes/core/compile/ibis_types.py +2 -1
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/bigframes/core/compile/polars/compiler.py +15 -18
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/bigframes/core/compile/scalar_op_compiler.py +19 -5
- bigframes-2.0.0.dev0/bigframes/core/groupby/__init__.py +18 -0
- bigframes-2.0.0.dev0/bigframes/core/groupby/aggs.py +26 -0
- bigframes-1.41.0/bigframes/core/groupby/__init__.py → bigframes-2.0.0.dev0/bigframes/core/groupby/dataframe_group_by.py +23 -303
- bigframes-2.0.0.dev0/bigframes/core/groupby/series_group_by.py +315 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/bigframes/core/indexers.py +35 -1
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/bigframes/core/indexes/base.py +41 -10
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/bigframes/core/reshape/tile.py +45 -7
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/bigframes/core/utils.py +34 -1
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/bigframes/core/window_spec.py +54 -17
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/bigframes/dataframe.py +88 -15
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/bigframes/exceptions.py +4 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/bigframes/functions/_function_client.py +69 -18
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/bigframes/functions/_function_session.py +40 -61
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/bigframes/functions/_utils.py +5 -2
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/bigframes/functions/function.py +0 -1
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/bigframes/geopandas/geoseries.py +7 -1
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/bigframes/ml/core.py +10 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/bigframes/ml/linear_model.py +20 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/bigframes/ml/llm.py +25 -535
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/bigframes/ml/loader.py +2 -7
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/bigframes/ml/sql.py +6 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/bigframes/operations/__init__.py +4 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/bigframes/operations/aggregations.py +4 -2
- bigframes-2.0.0.dev0/bigframes/operations/ai.py +896 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/bigframes/operations/base.py +39 -45
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/bigframes/operations/blob.py +116 -29
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/bigframes/operations/geo_ops.py +8 -1
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/bigframes/operations/semantics.py +15 -17
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/bigframes/operations/type.py +14 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/bigframes/pandas/__init__.py +10 -4
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/bigframes/series.py +43 -11
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/bigframes/session/__init__.py +59 -46
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/bigframes/session/_io/bigquery/__init__.py +1 -1
- bigframes-2.0.0.dev0/bigframes/session/bigquery_session.py +171 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/bigframes/session/clients.py +36 -47
- bigframes-2.0.0.dev0/bigframes/session/environment.py +102 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/bigframes/session/executor.py +7 -5
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/bigframes/session/loader.py +6 -4
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/bigframes/session/metrics.py +37 -23
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/bigframes/session/temp_storage.py +21 -18
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/bigframes/streaming/dataframe.py +2 -1
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/bigframes/version.py +2 -2
- {bigframes-1.41.0 → bigframes-2.0.0.dev0/bigframes.egg-info}/PKG-INFO +28 -3
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/bigframes.egg-info/SOURCES.txt +13 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/bigframes.egg-info/requires.txt +2 -2
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/setup.py +3 -2
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/tests/system/conftest.py +23 -3
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/tests/system/large/blob/test_function.py +110 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/tests/system/large/functions/test_managed_function.py +78 -59
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/tests/system/large/functions/test_remote_function.py +286 -137
- bigframes-2.0.0.dev0/tests/system/large/operations/test_ai.py +956 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/tests/system/large/test_location.py +75 -35
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/tests/system/large/test_session.py +17 -12
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/tests/system/load/test_llm.py +1 -2
- bigframes-2.0.0.dev0/tests/system/small/bigquery/test_geo.py +240 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/tests/system/small/bigquery/test_json.py +27 -62
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/tests/system/small/blob/test_properties.py +1 -4
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/tests/system/small/functions/test_remote_function.py +157 -102
- bigframes-2.0.0.dev0/tests/system/small/geopandas/test_geoseries.py +401 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/tests/system/small/ml/conftest.py +26 -58
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/tests/system/small/ml/test_core.py +0 -21
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/tests/system/small/ml/test_linear_model.py +36 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/tests/system/small/ml/test_llm.py +26 -248
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/tests/system/small/ml/test_register.py +1 -10
- bigframes-2.0.0.dev0/tests/system/small/operations/test_ai.py +141 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/tests/system/small/operations/test_semantics.py +19 -0
- bigframes-2.0.0.dev0/tests/system/small/test_bq_sessions.py +80 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/tests/system/small/test_dataframe.py +38 -9
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/tests/system/small/test_dataframe_io.py +8 -138
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/tests/system/small/test_encryption.py +2 -2
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/tests/system/small/test_index.py +9 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/tests/system/small/test_pandas.py +169 -79
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/tests/system/small/test_progress_bar.py +13 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/tests/system/small/test_series.py +62 -22
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/tests/system/small/test_session.py +201 -9
- bigframes-2.0.0.dev0/tests/system/small/test_window.py +190 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/tests/system/utils.py +17 -1
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/tests/unit/_config/test_bigquery_options.py +7 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/tests/unit/_config/test_experiment_options.py +11 -11
- bigframes-2.0.0.dev0/tests/unit/bigquery/test_json.py +26 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/tests/unit/core/test_blocks.py +8 -0
- bigframes-2.0.0.dev0/tests/unit/core/test_windowspec.py +50 -0
- bigframes-2.0.0.dev0/tests/unit/functions/__init__.py +13 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/tests/unit/functions/test_remote_function.py +9 -3
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/tests/unit/session/test_clients.py +68 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/tests/unit/session/test_session.py +33 -0
- bigframes-2.0.0.dev0/tests/unit/test_clients.py +67 -0
- bigframes-2.0.0.dev0/tests/unit/test_daemon.py +42 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/tests/unit/test_dataframe.py +11 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/tests/unit/test_pandas.py +51 -6
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/geopandas/geoseries.py +193 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/pandas/core/frame.py +4 -4
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/pandas/core/generic.py +23 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/pandas/core/reshape/tile.py +14 -7
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/pandas/core/series.py +5 -4
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/version.py +2 -2
- bigframes-1.41.0/bigframes/bigquery/_operations/geo.py +0 -93
- bigframes-1.41.0/tests/system/small/bigquery/test_geo.py +0 -53
- bigframes-1.41.0/tests/system/small/geopandas/test_geoseries.py +0 -196
- bigframes-1.41.0/tests/system/small/test_window.py +0 -95
- bigframes-1.41.0/tests/unit/test_clients.py +0 -49
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/LICENSE +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/MANIFEST.in +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/bigframes/__init__.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/bigframes/_config/__init__.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/bigframes/_config/display_options.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/bigframes/_config/sampling_options.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/bigframes/bigquery/_operations/__init__.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/bigframes/bigquery/_operations/approx_agg.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/bigframes/bigquery/_operations/array.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/bigframes/bigquery/_operations/datetime.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/bigframes/bigquery/_operations/json.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/bigframes/bigquery/_operations/search.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/bigframes/bigquery/_operations/sql.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/bigframes/bigquery/_operations/struct.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/bigframes/core/__init__.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/bigframes/core/array_value.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/bigframes/core/bigframe_node.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/bigframes/core/compile/__init__.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/bigframes/core/compile/api.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/bigframes/core/compile/compiler.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/bigframes/core/compile/concat.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/bigframes/core/compile/constants.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/bigframes/core/compile/default_ordering.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/bigframes/core/compile/explode.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/bigframes/core/compile/googlesql/__init__.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/bigframes/core/compile/googlesql/abc.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/bigframes/core/compile/googlesql/datatype.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/bigframes/core/compile/googlesql/expression.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/bigframes/core/compile/googlesql/function.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/bigframes/core/compile/googlesql/query.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/bigframes/core/compile/polars/__init__.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/bigframes/core/compile/schema_translator.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/bigframes/core/convert.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/bigframes/core/eval.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/bigframes/core/explode.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/bigframes/core/expression.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/bigframes/core/global_session.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/bigframes/core/guid.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/bigframes/core/identifiers.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/bigframes/core/indexes/__init__.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/bigframes/core/indexes/multi.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/bigframes/core/join_def.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/bigframes/core/local_data.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/bigframes/core/log_adapter.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/bigframes/core/nodes.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/bigframes/core/ordering.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/bigframes/core/pruning.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/bigframes/core/reshape/__init__.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/bigframes/core/reshape/api.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/bigframes/core/reshape/concat.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/bigframes/core/reshape/encoding.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/bigframes/core/reshape/merge.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/bigframes/core/rewrite/__init__.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/bigframes/core/rewrite/identifiers.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/bigframes/core/rewrite/implicit_align.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/bigframes/core/rewrite/legacy_align.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/bigframes/core/rewrite/order.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/bigframes/core/rewrite/pruning.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/bigframes/core/rewrite/slices.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/bigframes/core/rewrite/timedeltas.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/bigframes/core/scalar.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/bigframes/core/schema.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/bigframes/core/slices.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/bigframes/core/sql.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/bigframes/core/tools/__init__.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/bigframes/core/tools/datetimes.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/bigframes/core/tree_properties.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/bigframes/core/validations.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/bigframes/core/window/__init__.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/bigframes/dtypes.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/bigframes/enums.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/bigframes/features.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/bigframes/formatting_helpers.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/bigframes/functions/__init__.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/bigframes/functions/function_template.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/bigframes/geopandas/__init__.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/bigframes/ml/__init__.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/bigframes/ml/base.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/bigframes/ml/cluster.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/bigframes/ml/compose.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/bigframes/ml/decomposition.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/bigframes/ml/ensemble.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/bigframes/ml/forecasting.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/bigframes/ml/globals.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/bigframes/ml/imported.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/bigframes/ml/impute.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/bigframes/ml/metrics/__init__.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/bigframes/ml/metrics/_metrics.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/bigframes/ml/metrics/pairwise.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/bigframes/ml/model_selection.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/bigframes/ml/pipeline.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/bigframes/ml/preprocessing.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/bigframes/ml/remote.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/bigframes/ml/utils.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/bigframes/operations/_matplotlib/__init__.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/bigframes/operations/_matplotlib/core.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/bigframes/operations/_matplotlib/hist.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/bigframes/operations/_op_converters.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/bigframes/operations/array_ops.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/bigframes/operations/base_ops.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/bigframes/operations/blob_ops.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/bigframes/operations/bool_ops.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/bigframes/operations/comparison_ops.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/bigframes/operations/date_ops.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/bigframes/operations/datetime_ops.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/bigframes/operations/datetimes.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/bigframes/operations/distance_ops.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/bigframes/operations/frequency_ops.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/bigframes/operations/generic_ops.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/bigframes/operations/json_ops.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/bigframes/operations/lists.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/bigframes/operations/numeric_ops.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/bigframes/operations/numpy_op_maps.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/bigframes/operations/plotting.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/bigframes/operations/remote_function_ops.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/bigframes/operations/string_ops.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/bigframes/operations/strings.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/bigframes/operations/struct_ops.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/bigframes/operations/structs.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/bigframes/operations/time_ops.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/bigframes/operations/timedelta_ops.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/bigframes/pandas/core/__init__.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/bigframes/pandas/core/api.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/bigframes/pandas/core/tools/__init__.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/bigframes/pandas/core/tools/timedeltas.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/bigframes/pandas/io/__init__.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/bigframes/pandas/io/api.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/bigframes/py.typed +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/bigframes/session/_io/__init__.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/bigframes/session/_io/bigquery/read_gbq_table.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/bigframes/session/_io/pandas.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/bigframes/session/planner.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/bigframes/session/time.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/bigframes/session/validation.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/bigframes/streaming/__init__.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/bigframes.egg-info/dependency_links.txt +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/bigframes.egg-info/not-zip-safe +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/bigframes.egg-info/top_level.txt +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/pyproject.toml +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/setup.cfg +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/tests/__init__.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/tests/benchmark/README.md +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/tests/benchmark/__init__.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/tests/benchmark/db_benchmark/groupby/config.jsonl +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/tests/benchmark/db_benchmark/groupby/q1.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/tests/benchmark/db_benchmark/groupby/q10.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/tests/benchmark/db_benchmark/groupby/q2.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/tests/benchmark/db_benchmark/groupby/q3.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/tests/benchmark/db_benchmark/groupby/q4.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/tests/benchmark/db_benchmark/groupby/q5.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/tests/benchmark/db_benchmark/groupby/q6.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/tests/benchmark/db_benchmark/groupby/q7.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/tests/benchmark/db_benchmark/groupby/q8.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/tests/benchmark/db_benchmark/join/config.jsonl +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/tests/benchmark/db_benchmark/join/q1.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/tests/benchmark/db_benchmark/join/q2.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/tests/benchmark/db_benchmark/join/q3.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/tests/benchmark/db_benchmark/join/q4.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/tests/benchmark/db_benchmark/join/q5.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/tests/benchmark/db_benchmark/sort/config.jsonl +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/tests/benchmark/db_benchmark/sort/q1.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/tests/benchmark/tpch/config.jsonl +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/tests/benchmark/tpch/q1.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/tests/benchmark/tpch/q10.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/tests/benchmark/tpch/q11.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/tests/benchmark/tpch/q12.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/tests/benchmark/tpch/q13.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/tests/benchmark/tpch/q14.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/tests/benchmark/tpch/q15.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/tests/benchmark/tpch/q16.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/tests/benchmark/tpch/q17.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/tests/benchmark/tpch/q18.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/tests/benchmark/tpch/q19.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/tests/benchmark/tpch/q2.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/tests/benchmark/tpch/q20.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/tests/benchmark/tpch/q21.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/tests/benchmark/tpch/q22.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/tests/benchmark/tpch/q3.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/tests/benchmark/tpch/q4.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/tests/benchmark/tpch/q5.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/tests/benchmark/tpch/q6.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/tests/benchmark/tpch/q7.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/tests/benchmark/tpch/q8.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/tests/benchmark/tpch/q9.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/tests/benchmark/utils.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/tests/data/hockey_players.json +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/tests/data/hockey_players.jsonl +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/tests/data/json.jsonl +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/tests/data/json_schema.json +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/tests/data/matrix_2by3.json +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/tests/data/matrix_2by3.jsonl +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/tests/data/matrix_3by4.json +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/tests/data/matrix_3by4.jsonl +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/tests/data/nested.jsonl +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/tests/data/nested_schema.json +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/tests/data/nested_structs.jsonl +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/tests/data/nested_structs_schema.json +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/tests/data/penguins.jsonl +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/tests/data/penguins_schema.json +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/tests/data/people.csv +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/tests/data/repeated.jsonl +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/tests/data/repeated_schema.json +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/tests/data/scalars.jsonl +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/tests/data/scalars_schema.json +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/tests/data/time_series.jsonl +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/tests/data/time_series_schema.json +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/tests/data/urban_areas.jsonl +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/tests/data/urban_areas_schema.json +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/tests/system/__init__.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/tests/system/large/__init__.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/tests/system/large/functions/__init__.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/tests/system/large/ml/test_cluster.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/tests/system/large/ml/test_compose.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/tests/system/large/ml/test_core.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/tests/system/large/ml/test_decomposition.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/tests/system/large/ml/test_ensemble.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/tests/system/large/ml/test_forecasting.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/tests/system/large/ml/test_linear_model.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/tests/system/large/ml/test_model_selection.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/tests/system/large/ml/test_pipeline.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/tests/system/large/operations/__init__.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/tests/system/large/operations/conftest.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/tests/system/large/operations/test_semantics.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/tests/system/large/test_dataframe.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/tests/system/large/test_dataframe_io.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/tests/system/large/test_streaming.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/tests/system/load/conftest.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/tests/system/load/test_large_tables.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/tests/system/small/__init__.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/tests/system/small/bigquery/__init__.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/tests/system/small/bigquery/test_approx_agg.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/tests/system/small/bigquery/test_array.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/tests/system/small/bigquery/test_datetime.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/tests/system/small/bigquery/test_sql.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/tests/system/small/bigquery/test_struct.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/tests/system/small/bigquery/test_vector_search.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/tests/system/small/blob/test_io.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/tests/system/small/blob/test_urls.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/tests/system/small/core/__init__.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/tests/system/small/core/test_convert.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/tests/system/small/core/test_indexers.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/tests/system/small/functions/__init__.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/tests/system/small/ml/__init__.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/tests/system/small/ml/test_cluster.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/tests/system/small/ml/test_decomposition.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/tests/system/small/ml/test_ensemble.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/tests/system/small/ml/test_forecasting.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/tests/system/small/ml/test_imported.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/tests/system/small/ml/test_impute.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/tests/system/small/ml/test_metrics.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/tests/system/small/ml/test_metrics_pairwise.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/tests/system/small/ml/test_model_selection.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/tests/system/small/ml/test_preprocessing.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/tests/system/small/ml/test_remote.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/tests/system/small/ml/test_utils.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/tests/system/small/operations/__init__.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/tests/system/small/operations/test_dates.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/tests/system/small/operations/test_datetimes.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/tests/system/small/operations/test_lists.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/tests/system/small/operations/test_plotting.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/tests/system/small/operations/test_strings.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/tests/system/small/operations/test_struct.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/tests/system/small/operations/test_timedeltas.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/tests/system/small/regression/test_issue355_merge_after_filter.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/tests/system/small/test_groupby.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/tests/system/small/test_index_io.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/tests/system/small/test_ipython.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/tests/system/small/test_multiindex.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/tests/system/small/test_null_index.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/tests/system/small/test_numpy.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/tests/system/small/test_pandas_options.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/tests/system/small/test_scalar.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/tests/system/small/test_series_io.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/tests/system/small/test_unordered.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/tests/unit/__init__.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/tests/unit/_config/__init__.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/tests/unit/_config/test_threaded_options.py +0 -0
- {bigframes-1.41.0/tests/unit/functions → bigframes-2.0.0.dev0/tests/unit/bigquery}/__init__.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/tests/unit/core/__init__.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/tests/unit/core/compile/__init__.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/tests/unit/core/compile/googlesql/__init__.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/tests/unit/core/compile/googlesql/test_expression.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/tests/unit/core/compile/googlesql/test_function.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/tests/unit/core/compile/googlesql/test_query.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/tests/unit/core/test_bf_utils.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/tests/unit/core/test_dtypes.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/tests/unit/core/test_expression.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/tests/unit/core/test_indexes.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/tests/unit/core/test_log_adapter.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/tests/unit/core/test_rewrite.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/tests/unit/core/test_slices.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/tests/unit/core/test_sql.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/tests/unit/functions/test_function_template.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/tests/unit/functions/test_remote_function_utils.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/tests/unit/ml/__init__.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/tests/unit/ml/test_api_primitives.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/tests/unit/ml/test_compose.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/tests/unit/ml/test_forecasting.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/tests/unit/ml/test_golden_sql.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/tests/unit/ml/test_pipeline.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/tests/unit/ml/test_sql.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/tests/unit/operations/__init__.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/tests/unit/polars_session.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/tests/unit/resources.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/tests/unit/session/__init__.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/tests/unit/session/test_io_bigquery.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/tests/unit/session/test_io_pandas.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/tests/unit/session/test_read_gbq_table.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/tests/unit/session/test_time.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/tests/unit/test_constants.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/tests/unit/test_dataframe_io.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/tests/unit/test_features.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/tests/unit/test_formatting_helpers.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/tests/unit/test_local_engine.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/tests/unit/test_notebook.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/tests/unit/test_planner.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/tests/unit/test_series.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/tests/unit/test_series_io.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/__init__.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/constants.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/cpython/LICENSE +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/cpython/__init__.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/cpython/_pprint.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/db_benchmark/LICENSE +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/db_benchmark/METADATA +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/db_benchmark/README.md +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/db_benchmark/__init__.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/db_benchmark/groupby_queries.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/db_benchmark/join_queries.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/db_benchmark/sort_queries.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/geopandas/LICENSE.txt +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/google_cloud_bigquery/LICENSE +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/google_cloud_bigquery/__init__.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/google_cloud_bigquery/_pandas_helpers.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/google_cloud_bigquery/tests/__init__.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/google_cloud_bigquery/tests/unit/__init__.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/google_cloud_bigquery/tests/unit/test_pandas_helpers.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/ibis/LICENSE.txt +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/ibis/README.md +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/ibis/__init__.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/ibis/backends/__init__.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/ibis/backends/bigquery/__init__.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/ibis/backends/bigquery/backend.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/ibis/backends/bigquery/client.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/ibis/backends/bigquery/converter.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/ibis/backends/bigquery/datatypes.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/ibis/backends/bigquery/udf/__init__.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/ibis/backends/bigquery/udf/core.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/ibis/backends/bigquery/udf/find.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/ibis/backends/bigquery/udf/rewrite.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/ibis/backends/sql/__init__.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/ibis/backends/sql/compilers/__init__.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/ibis/backends/sql/compilers/base.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/ibis/backends/sql/compilers/bigquery/__init__.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/ibis/backends/sql/datatypes.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/ibis/backends/sql/rewrites.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/ibis/common/__init__.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/ibis/common/annotations.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/ibis/common/bases.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/ibis/common/caching.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/ibis/common/collections.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/ibis/common/deferred.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/ibis/common/dispatch.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/ibis/common/egraph.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/ibis/common/exceptions.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/ibis/common/graph.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/ibis/common/grounds.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/ibis/common/numeric.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/ibis/common/patterns.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/ibis/common/selectors.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/ibis/common/temporal.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/ibis/common/typing.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/ibis/config.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/ibis/expr/__init__.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/ibis/expr/api.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/ibis/expr/builders.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/ibis/expr/datashape.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/ibis/expr/datatypes/__init__.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/ibis/expr/datatypes/cast.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/ibis/expr/datatypes/core.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/ibis/expr/datatypes/parse.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/ibis/expr/datatypes/value.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/ibis/expr/decompile.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/ibis/expr/format.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/ibis/expr/operations/__init__.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/ibis/expr/operations/analytic.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/ibis/expr/operations/arrays.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/ibis/expr/operations/core.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/ibis/expr/operations/generic.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/ibis/expr/operations/geospatial.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/ibis/expr/operations/histograms.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/ibis/expr/operations/json.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/ibis/expr/operations/logical.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/ibis/expr/operations/maps.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/ibis/expr/operations/numeric.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/ibis/expr/operations/reductions.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/ibis/expr/operations/relations.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/ibis/expr/operations/sortkeys.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/ibis/expr/operations/strings.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/ibis/expr/operations/structs.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/ibis/expr/operations/subqueries.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/ibis/expr/operations/temporal.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/ibis/expr/operations/udf.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/ibis/expr/operations/window.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/ibis/expr/rewrites.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/ibis/expr/rules.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/ibis/expr/schema.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/ibis/expr/sql.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/ibis/expr/types/__init__.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/ibis/expr/types/arrays.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/ibis/expr/types/binary.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/ibis/expr/types/core.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/ibis/expr/types/dataframe_interchange.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/ibis/expr/types/generic.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/ibis/expr/types/geospatial.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/ibis/expr/types/groupby.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/ibis/expr/types/joins.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/ibis/expr/types/json.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/ibis/expr/types/logical.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/ibis/expr/types/maps.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/ibis/expr/types/numeric.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/ibis/expr/types/pretty.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/ibis/expr/types/relations.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/ibis/expr/types/strings.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/ibis/expr/types/structs.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/ibis/expr/types/temporal.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/ibis/expr/types/temporal_windows.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/ibis/expr/types/typing.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/ibis/expr/types/uuid.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/ibis/expr/visualize.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/ibis/formats/__init__.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/ibis/formats/numpy.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/ibis/formats/pandas.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/ibis/formats/polars.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/ibis/formats/pyarrow.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/ibis/selectors.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/ibis/util.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/pandas/AUTHORS.md +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/pandas/LICENSE +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/pandas/README.md +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/pandas/__init__.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/pandas/_config/config.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/pandas/core/arrays/__init__.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/pandas/core/arrays/arrow/__init__.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/pandas/core/arrays/arrow/accessors.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/pandas/core/arrays/datetimelike.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/pandas/core/common.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/pandas/core/computation/align.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/pandas/core/computation/common.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/pandas/core/computation/engines.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/pandas/core/computation/eval.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/pandas/core/computation/expr.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/pandas/core/computation/ops.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/pandas/core/computation/parsing.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/pandas/core/computation/scope.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/pandas/core/config_init.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/pandas/core/dtypes/inference.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/pandas/core/groupby/__init__.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/pandas/core/indexes/__init__.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/pandas/core/indexes/accessor.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/pandas/core/indexes/base.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/pandas/core/indexes/multi.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/pandas/core/indexing.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/pandas/core/reshape/__init__.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/pandas/core/reshape/concat.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/pandas/core/reshape/encoding.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/pandas/core/reshape/merge.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/pandas/core/strings/accessor.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/pandas/core/tools/__init__.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/pandas/core/tools/datetimes.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/pandas/core/tools/timedeltas.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/pandas/core/window/__init__.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/pandas/core/window/rolling.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/pandas/io/__init__.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/pandas/io/common.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/pandas/io/gbq.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/pandas/io/parquet.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/pandas/io/parsers/__init__.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/pandas/io/parsers/readers.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/pandas/io/pickle.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/pandas/pandas/_typing.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/pandas/plotting/_core.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/pandas/util/_exceptions.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/pandas/util/_validators.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/py.typed +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/sklearn/COPYING +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/sklearn/__init__.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/sklearn/base.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/sklearn/cluster/_kmeans.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/sklearn/compose/_column_transformer.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/sklearn/decomposition/_pca.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/sklearn/ensemble/__init__.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/sklearn/ensemble/_forest.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/sklearn/impute/_base.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/sklearn/linear_model/_base.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/sklearn/linear_model/_logistic.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/sklearn/metrics/_classification.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/sklearn/metrics/_ranking.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/sklearn/metrics/_regression.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/sklearn/metrics/pairwise.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/sklearn/model_selection/_split.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/sklearn/model_selection/_validation.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/sklearn/pipeline.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/sklearn/preprocessing/_data.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/sklearn/preprocessing/_discretization.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/sklearn/preprocessing/_encoder.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/sklearn/preprocessing/_label.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/sklearn/preprocessing/_polynomial.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/tpch/LICENSE +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/tpch/METADATA +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/tpch/README.md +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/tpch/TPC-EULA.txt +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/tpch/__init__.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/tpch/queries/__init__.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/tpch/queries/q1.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/tpch/queries/q10.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/tpch/queries/q11.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/tpch/queries/q12.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/tpch/queries/q13.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/tpch/queries/q14.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/tpch/queries/q15.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/tpch/queries/q16.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/tpch/queries/q17.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/tpch/queries/q18.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/tpch/queries/q19.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/tpch/queries/q2.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/tpch/queries/q20.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/tpch/queries/q21.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/tpch/queries/q22.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/tpch/queries/q3.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/tpch/queries/q4.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/tpch/queries/q5.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/tpch/queries/q6.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/tpch/queries/q7.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/tpch/queries/q8.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/tpch/queries/q9.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/tpch/sql_queries/q1.sql +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/tpch/sql_queries/q10.sql +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/tpch/sql_queries/q11.sql +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/tpch/sql_queries/q12.sql +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/tpch/sql_queries/q13.sql +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/tpch/sql_queries/q14.sql +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/tpch/sql_queries/q15.sql +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/tpch/sql_queries/q16.sql +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/tpch/sql_queries/q17.sql +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/tpch/sql_queries/q18.sql +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/tpch/sql_queries/q19.sql +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/tpch/sql_queries/q2.sql +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/tpch/sql_queries/q20.sql +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/tpch/sql_queries/q21.sql +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/tpch/sql_queries/q22.sql +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/tpch/sql_queries/q3.sql +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/tpch/sql_queries/q4.sql +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/tpch/sql_queries/q5.sql +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/tpch/sql_queries/q6.sql +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/tpch/sql_queries/q7.sql +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/tpch/sql_queries/q8.sql +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/tpch/sql_queries/q9.sql +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/xgboost/LICENSE +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/xgboost/__init__.py +0 -0
- {bigframes-1.41.0 → bigframes-2.0.0.dev0}/third_party/bigframes_vendored/xgboost/sklearn.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: bigframes
|
|
3
|
-
Version:
|
|
3
|
+
Version: 2.0.0.dev0
|
|
4
4
|
Summary: BigQuery DataFrames -- scalable analytics and machine learning with BigQuery
|
|
5
5
|
Home-page: https://github.com/googleapis/python-bigquery-dataframes
|
|
6
6
|
Author: Google LLC
|
|
@@ -20,6 +20,7 @@ Classifier: Programming Language :: Python :: 3.13
|
|
|
20
20
|
Classifier: Operating System :: OS Independent
|
|
21
21
|
Classifier: Topic :: Internet
|
|
22
22
|
Requires-Python: >=3.9
|
|
23
|
+
Description-Content-Type: text/x-rst
|
|
23
24
|
License-File: LICENSE
|
|
24
25
|
Requires-Dist: cloudpickle>=2.0.0
|
|
25
26
|
Requires-Dist: fsspec>=2023.3.0
|
|
@@ -28,7 +29,7 @@ Requires-Dist: geopandas>=0.12.2
|
|
|
28
29
|
Requires-Dist: google-auth<3.0dev,>=2.15.0
|
|
29
30
|
Requires-Dist: google-cloud-bigtable>=2.24.0
|
|
30
31
|
Requires-Dist: google-cloud-pubsub>=2.21.4
|
|
31
|
-
Requires-Dist: google-cloud-bigquery[bqstorage,pandas]>=3.
|
|
32
|
+
Requires-Dist: google-cloud-bigquery[bqstorage,pandas]>=3.31.0
|
|
32
33
|
Requires-Dist: google-cloud-functions>=1.12.0
|
|
33
34
|
Requires-Dist: google-cloud-bigquery-connection>=1.12.0
|
|
34
35
|
Requires-Dist: google-cloud-iam>=2.12.1
|
|
@@ -37,7 +38,7 @@ Requires-Dist: google-cloud-storage>=2.0.0
|
|
|
37
38
|
Requires-Dist: jellyfish<1.1.2,>=0.8.9
|
|
38
39
|
Requires-Dist: numpy>=1.24.0
|
|
39
40
|
Requires-Dist: pandas>=1.5.3
|
|
40
|
-
Requires-Dist: pandas-gbq>=0.26.
|
|
41
|
+
Requires-Dist: pandas-gbq>=0.26.1
|
|
41
42
|
Requires-Dist: pyarrow>=15.0.2
|
|
42
43
|
Requires-Dist: pydata-google-auth>=1.8.2
|
|
43
44
|
Requires-Dist: requests>=2.27.1
|
|
@@ -88,6 +89,30 @@ powered by the BigQuery engine.
|
|
|
88
89
|
BigQuery DataFrames is an open-source package. You can run
|
|
89
90
|
``pip install --upgrade bigframes`` to install the latest version.
|
|
90
91
|
|
|
92
|
+
⚠️ Warning: Breaking Changes in BigQuery DataFrames v2.0
|
|
93
|
+
--------------------------------------------------------
|
|
94
|
+
|
|
95
|
+
Version 2.0 introduces breaking changes for improved security and performance. Key default behaviors have changed, including
|
|
96
|
+
|
|
97
|
+
* **Large Results (>10GB):** The default value for ``allow_large_results`` has changed to ``False``.
|
|
98
|
+
Methods like ``to_pandas()`` will now fail if the query result's compressed data size exceeds 10GB,
|
|
99
|
+
unless large results are explicitly permitted.
|
|
100
|
+
* **Remote Function Security:** The library no longer automatically lets the Compute Engine default service
|
|
101
|
+
account become the identity of the Cloud Run functions. If that is desired, it has to be indicated by passing
|
|
102
|
+
``cloud_function_service_account="default"``. And network ingress now defaults to ``"internal-only"``.
|
|
103
|
+
* **@remote_function Argument Passing:** Arguments other than ``input_types``, ``output_type``, and ``dataset``
|
|
104
|
+
to ``remote_function`` must now be passed using keyword syntax, as positional arguments are no longer supported.
|
|
105
|
+
* **Endpoint Connections:** Automatic fallback to locational endpoints in certain regions is removed.
|
|
106
|
+
* **LLM Updates (Gemini Integration):** Integrations now default to the ``gemini-2.0-flash-001`` model.
|
|
107
|
+
PaLM2 support has been removed; please migrate any existing PaLM2 usage to Gemini. **Note:** The current default
|
|
108
|
+
model will be removed in Version 3.0.
|
|
109
|
+
|
|
110
|
+
**Important:** If you are not ready to adapt to these changes, please pin your dependency to a version less than 2.0
|
|
111
|
+
(e.g., ``bigframes==1.42.0``) to avoid disruption.
|
|
112
|
+
|
|
113
|
+
To learn about these changes and how to migrate to version 2.0, see the
|
|
114
|
+
`updated introduction guide <https://cloud.google.com/bigquery/docs/bigquery-dataframes-introduction>`_.
|
|
115
|
+
|
|
91
116
|
.. |GA| image:: https://img.shields.io/badge/support-GA-gold.svg
|
|
92
117
|
:target: https://github.com/googleapis/google-cloud-python/blob/main/README.rst#general-availability
|
|
93
118
|
.. |pypi| image:: https://img.shields.io/pypi/v/bigframes.svg
|
|
@@ -12,6 +12,30 @@ powered by the BigQuery engine.
|
|
|
12
12
|
BigQuery DataFrames is an open-source package. You can run
|
|
13
13
|
``pip install --upgrade bigframes`` to install the latest version.
|
|
14
14
|
|
|
15
|
+
⚠️ Warning: Breaking Changes in BigQuery DataFrames v2.0
|
|
16
|
+
--------------------------------------------------------
|
|
17
|
+
|
|
18
|
+
Version 2.0 introduces breaking changes for improved security and performance. Key default behaviors have changed, including
|
|
19
|
+
|
|
20
|
+
* **Large Results (>10GB):** The default value for ``allow_large_results`` has changed to ``False``.
|
|
21
|
+
Methods like ``to_pandas()`` will now fail if the query result's compressed data size exceeds 10GB,
|
|
22
|
+
unless large results are explicitly permitted.
|
|
23
|
+
* **Remote Function Security:** The library no longer automatically lets the Compute Engine default service
|
|
24
|
+
account become the identity of the Cloud Run functions. If that is desired, it has to be indicated by passing
|
|
25
|
+
``cloud_function_service_account="default"``. And network ingress now defaults to ``"internal-only"``.
|
|
26
|
+
* **@remote_function Argument Passing:** Arguments other than ``input_types``, ``output_type``, and ``dataset``
|
|
27
|
+
to ``remote_function`` must now be passed using keyword syntax, as positional arguments are no longer supported.
|
|
28
|
+
* **Endpoint Connections:** Automatic fallback to locational endpoints in certain regions is removed.
|
|
29
|
+
* **LLM Updates (Gemini Integration):** Integrations now default to the ``gemini-2.0-flash-001`` model.
|
|
30
|
+
PaLM2 support has been removed; please migrate any existing PaLM2 usage to Gemini. **Note:** The current default
|
|
31
|
+
model will be removed in Version 3.0.
|
|
32
|
+
|
|
33
|
+
**Important:** If you are not ready to adapt to these changes, please pin your dependency to a version less than 2.0
|
|
34
|
+
(e.g., ``bigframes==1.42.0``) to avoid disruption.
|
|
35
|
+
|
|
36
|
+
To learn about these changes and how to migrate to version 2.0, see the
|
|
37
|
+
`updated introduction guide <https://cloud.google.com/bigquery/docs/bigquery-dataframes-introduction>`_.
|
|
38
|
+
|
|
15
39
|
.. |GA| image:: https://img.shields.io/badge/support-GA-gold.svg
|
|
16
40
|
:target: https://github.com/googleapis/google-cloud-python/blob/main/README.rst#general-availability
|
|
17
41
|
.. |pypi| image:: https://img.shields.io/pypi/v/bigframes.svg
|
|
@@ -89,7 +89,7 @@ class BigQueryOptions:
|
|
|
89
89
|
kms_key_name: Optional[str] = None,
|
|
90
90
|
skip_bq_connection_check: bool = False,
|
|
91
91
|
*,
|
|
92
|
-
allow_large_results: bool =
|
|
92
|
+
allow_large_results: bool = False,
|
|
93
93
|
ordering_mode: Literal["strict", "partial"] = "strict",
|
|
94
94
|
client_endpoints_override: Optional[dict] = None,
|
|
95
95
|
):
|
|
@@ -258,7 +258,8 @@ class BigQueryOptions:
|
|
|
258
258
|
|
|
259
259
|
@property
|
|
260
260
|
def use_regional_endpoints(self) -> bool:
|
|
261
|
-
"""Flag to connect to regional API endpoints
|
|
261
|
+
"""Flag to connect to regional API endpoints for BigQuery API and
|
|
262
|
+
BigQuery Storage API.
|
|
262
263
|
|
|
263
264
|
.. note::
|
|
264
265
|
Use of regional endpoints is a feature in Preview and available only
|
|
@@ -267,18 +268,16 @@ class BigQueryOptions:
|
|
|
267
268
|
"us-east5", "us-east7", "us-south1", "us-west1", "us-west2", "us-west3"
|
|
268
269
|
and "us-west4".
|
|
269
270
|
|
|
270
|
-
|
|
271
|
-
|
|
272
|
-
|
|
273
|
-
|
|
274
|
-
``europe-west3
|
|
275
|
-
``
|
|
276
|
-
|
|
277
|
-
|
|
278
|
-
|
|
279
|
-
|
|
280
|
-
to provide weaker promise on the request remaining within the location
|
|
281
|
-
during transit) ``europe-west3-bigquery.googleapis.com`` would be used.
|
|
271
|
+
Requires that ``location`` is set. For [supported regions](https://cloud.google.com/bigquery/docs/regional-endpoints),
|
|
272
|
+
for example ``europe-west3``, you need to specify
|
|
273
|
+
``location='europe-west3'`` and ``use_regional_endpoints=True``, and
|
|
274
|
+
then BigQuery DataFrames would connect to the BigQuery endpoint
|
|
275
|
+
``bigquery.europe-west3.rep.googleapis.com``. For not supported regions,
|
|
276
|
+
for example ``asia-northeast1``, when you specify
|
|
277
|
+
``location='asia-northeast1'`` and ``use_regional_endpoints=True``,
|
|
278
|
+
the global endpoint ``bigquery.googleapis.com`` would be used, which
|
|
279
|
+
does not promise any guarantee on the request remaining within the
|
|
280
|
+
location during transit.
|
|
282
281
|
|
|
283
282
|
Returns:
|
|
284
283
|
bool:
|
|
@@ -60,19 +60,31 @@ class ComputeOptions:
|
|
|
60
60
|
bytes billed beyond this limit will fail (without incurring a
|
|
61
61
|
charge). If unspecified, this will be set to your project default.
|
|
62
62
|
See `maximum_bytes_billed`: https://cloud.google.com/python/docs/reference/bigquery/latest/google.cloud.bigquery.job.QueryJobConfig#google_cloud_bigquery_job_QueryJobConfig_maximum_bytes_billed.
|
|
63
|
+
|
|
63
64
|
enable_multi_query_execution (bool, Options):
|
|
64
65
|
If enabled, large queries may be factored into multiple smaller queries
|
|
65
66
|
in order to avoid generating queries that are too complex for the query
|
|
66
67
|
engine to handle. However this comes at the cost of increase cost and latency.
|
|
68
|
+
|
|
67
69
|
extra_query_labels (Dict[str, Any], Options):
|
|
68
70
|
Stores additional custom labels for query configuration.
|
|
69
|
-
|
|
70
|
-
|
|
71
|
+
|
|
72
|
+
semantic_ops_confirmation_threshold (int, optional):
|
|
73
|
+
.. deprecated:: 1.42.0
|
|
74
|
+
Semantic operators are deprecated. Please use AI operators instead
|
|
75
|
+
|
|
76
|
+
semantic_ops_threshold_autofail (bool):
|
|
77
|
+
.. deprecated:: 1.42.0
|
|
78
|
+
Semantic operators are deprecated. Please use AI operators instead
|
|
79
|
+
|
|
80
|
+
ai_ops_confirmation_threshold (int, optional):
|
|
81
|
+
Guards against unexpected processing of large amount of rows by semantic operators.
|
|
71
82
|
If the number of rows exceeds the threshold, the user will be asked to confirm
|
|
72
83
|
their operations to resume. The default value is 0. Set the value to None
|
|
73
84
|
to turn off the guard.
|
|
74
|
-
|
|
75
|
-
|
|
85
|
+
|
|
86
|
+
ai_ops_threshold_autofail (bool):
|
|
87
|
+
Guards against unexpected processing of large amount of rows by semantic operators.
|
|
76
88
|
When set to True, the operation automatically fails without asking for user inputs.
|
|
77
89
|
"""
|
|
78
90
|
|
|
@@ -84,6 +96,9 @@ class ComputeOptions:
|
|
|
84
96
|
semantic_ops_confirmation_threshold: Optional[int] = 0
|
|
85
97
|
semantic_ops_threshold_autofail = False
|
|
86
98
|
|
|
99
|
+
ai_ops_confirmation_threshold: Optional[int] = 0
|
|
100
|
+
ai_ops_threshold_autofail = False
|
|
101
|
+
|
|
87
102
|
def assign_extra_query_labels(self, **kwargs: Any) -> None:
|
|
88
103
|
"""
|
|
89
104
|
Assigns additional custom labels for query configuration. The method updates the
|
|
@@ -24,8 +24,8 @@ class ExperimentOptions:
|
|
|
24
24
|
|
|
25
25
|
def __init__(self):
|
|
26
26
|
self._semantic_operators: bool = False
|
|
27
|
+
self._ai_operators: bool = False
|
|
27
28
|
self._blob: bool = False
|
|
28
|
-
self._udf: bool = False
|
|
29
29
|
|
|
30
30
|
@property
|
|
31
31
|
def semantic_operators(self) -> bool:
|
|
@@ -35,11 +35,24 @@ class ExperimentOptions:
|
|
|
35
35
|
def semantic_operators(self, value: bool):
|
|
36
36
|
if value is True:
|
|
37
37
|
msg = bfe.format_message(
|
|
38
|
-
"Semantic operators are
|
|
38
|
+
"Semantic operators are deprecated, and will be removed in the future"
|
|
39
|
+
)
|
|
40
|
+
warnings.warn(msg, category=FutureWarning)
|
|
41
|
+
self._semantic_operators = value
|
|
42
|
+
|
|
43
|
+
@property
|
|
44
|
+
def ai_operators(self) -> bool:
|
|
45
|
+
return self._ai_operators
|
|
46
|
+
|
|
47
|
+
@ai_operators.setter
|
|
48
|
+
def ai_operators(self, value: bool):
|
|
49
|
+
if value is True:
|
|
50
|
+
msg = bfe.format_message(
|
|
51
|
+
"AI operators are still under experiments, and are subject "
|
|
39
52
|
"to change in the future."
|
|
40
53
|
)
|
|
41
54
|
warnings.warn(msg, category=bfe.PreviewWarning)
|
|
42
|
-
self.
|
|
55
|
+
self._ai_operators = value
|
|
43
56
|
|
|
44
57
|
@property
|
|
45
58
|
def blob(self) -> bool:
|
|
@@ -54,17 +67,3 @@ class ExperimentOptions:
|
|
|
54
67
|
)
|
|
55
68
|
warnings.warn(msg, category=bfe.PreviewWarning)
|
|
56
69
|
self._blob = value
|
|
57
|
-
|
|
58
|
-
@property
|
|
59
|
-
def udf(self) -> bool:
|
|
60
|
-
return self._udf
|
|
61
|
-
|
|
62
|
-
@udf.setter
|
|
63
|
-
def udf(self, value: bool):
|
|
64
|
-
if value is True:
|
|
65
|
-
msg = bfe.format_message(
|
|
66
|
-
"BigFrames managed function (udf) is still under experiments. "
|
|
67
|
-
"It may not work and subject to change in the future."
|
|
68
|
-
)
|
|
69
|
-
warnings.warn(msg, category=bfe.PreviewWarning)
|
|
70
|
-
self._udf = value
|
|
@@ -27,7 +27,7 @@ from bigframes.bigquery._operations.datetime import (
|
|
|
27
27
|
unix_millis,
|
|
28
28
|
unix_seconds,
|
|
29
29
|
)
|
|
30
|
-
from bigframes.bigquery._operations.geo import st_area
|
|
30
|
+
from bigframes.bigquery._operations.geo import st_area, st_difference, st_intersection
|
|
31
31
|
from bigframes.bigquery._operations.json import (
|
|
32
32
|
json_extract,
|
|
33
33
|
json_extract_array,
|
|
@@ -48,6 +48,8 @@ __all__ = [
|
|
|
48
48
|
"array_to_string",
|
|
49
49
|
# geo ops
|
|
50
50
|
"st_area",
|
|
51
|
+
"st_difference",
|
|
52
|
+
"st_intersection",
|
|
51
53
|
# json ops
|
|
52
54
|
"json_set",
|
|
53
55
|
"json_extract",
|
|
@@ -0,0 +1,305 @@
|
|
|
1
|
+
# Copyright 2025 Google LLC
|
|
2
|
+
#
|
|
3
|
+
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
4
|
+
# you may not use this file except in compliance with the License.
|
|
5
|
+
# You may obtain a copy of the License at
|
|
6
|
+
#
|
|
7
|
+
# http://www.apache.org/licenses/LICENSE-2.0
|
|
8
|
+
#
|
|
9
|
+
# Unless required by applicable law or agreed to in writing, software
|
|
10
|
+
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
11
|
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
12
|
+
# See the License for the specific language governing permissions and
|
|
13
|
+
# limitations under the License.
|
|
14
|
+
|
|
15
|
+
from __future__ import annotations
|
|
16
|
+
|
|
17
|
+
from bigframes import operations as ops
|
|
18
|
+
import bigframes.dtypes
|
|
19
|
+
import bigframes.geopandas
|
|
20
|
+
import bigframes.series
|
|
21
|
+
|
|
22
|
+
"""
|
|
23
|
+
Search functions defined from
|
|
24
|
+
https://cloud.google.com/bigquery/docs/reference/standard-sql/geography_functions
|
|
25
|
+
"""
|
|
26
|
+
|
|
27
|
+
|
|
28
|
+
def st_area(series: bigframes.series.Series) -> bigframes.series.Series:
|
|
29
|
+
"""
|
|
30
|
+
Returns the area in square meters covered by the polygons in the input
|
|
31
|
+
`GEOGRAPHY`.
|
|
32
|
+
|
|
33
|
+
If geography_expression is a point or a line, returns zero. If
|
|
34
|
+
geography_expression is a collection, returns the area of the polygons
|
|
35
|
+
in the collection; if the collection doesn't contain polygons, returns zero.
|
|
36
|
+
|
|
37
|
+
|
|
38
|
+
.. note::
|
|
39
|
+
BigQuery's Geography functions, like `st_area`, interpret the geometry
|
|
40
|
+
data type as a point set on the Earth's surface. A point set is a set
|
|
41
|
+
of points, lines, and polygons on the WGS84 reference spheroid, with
|
|
42
|
+
geodesic edges. See: https://cloud.google.com/bigquery/docs/geospatial-data
|
|
43
|
+
|
|
44
|
+
|
|
45
|
+
**Examples:**
|
|
46
|
+
|
|
47
|
+
>>> import bigframes.geopandas
|
|
48
|
+
>>> import bigframes.pandas as bpd
|
|
49
|
+
>>> import bigframes.bigquery as bbq
|
|
50
|
+
>>> from shapely.geometry import Polygon, LineString, Point
|
|
51
|
+
>>> bpd.options.display.progress_bar = None
|
|
52
|
+
|
|
53
|
+
>>> series = bigframes.geopandas.GeoSeries(
|
|
54
|
+
... [
|
|
55
|
+
... Polygon([(0.0, 0.0), (0.1, 0.1), (0.0, 0.1)]),
|
|
56
|
+
... Polygon([(0.10, 0.4), (0.9, 0.5), (0.10, 0.5)]),
|
|
57
|
+
... Polygon([(0.1, 0.1), (0.2, 0.1), (0.2, 0.2)]),
|
|
58
|
+
... LineString([(0, 0), (1, 1), (0, 1)]),
|
|
59
|
+
... Point(0, 1),
|
|
60
|
+
... ]
|
|
61
|
+
... )
|
|
62
|
+
>>> series
|
|
63
|
+
0 POLYGON ((0 0, 0.1 0.1, 0 0.1, 0 0))
|
|
64
|
+
1 POLYGON ((0.1 0.4, 0.9 0.5, 0.1 0.5, 0.1 0.4))
|
|
65
|
+
2 POLYGON ((0.1 0.1, 0.2 0.1, 0.2 0.2, 0.1 0.1))
|
|
66
|
+
3 LINESTRING (0 0, 1 1, 0 1)
|
|
67
|
+
4 POINT (0 1)
|
|
68
|
+
dtype: geometry
|
|
69
|
+
|
|
70
|
+
>>> bbq.st_area(series)
|
|
71
|
+
0 61821689.855985
|
|
72
|
+
1 494563347.88721
|
|
73
|
+
2 61821689.855841
|
|
74
|
+
3 0.0
|
|
75
|
+
4 0.0
|
|
76
|
+
dtype: Float64
|
|
77
|
+
|
|
78
|
+
Use `round()` to round the outputed areas to the neares ten millions
|
|
79
|
+
|
|
80
|
+
>>> bbq.st_area(series).round(-7)
|
|
81
|
+
0 60000000.0
|
|
82
|
+
1 490000000.0
|
|
83
|
+
2 60000000.0
|
|
84
|
+
3 0.0
|
|
85
|
+
4 0.0
|
|
86
|
+
dtype: Float64
|
|
87
|
+
|
|
88
|
+
Returns:
|
|
89
|
+
bigframes.pandas.Series:
|
|
90
|
+
Series of float representing the areas.
|
|
91
|
+
"""
|
|
92
|
+
series = series._apply_unary_op(ops.geo_area_op)
|
|
93
|
+
series.name = None
|
|
94
|
+
return series
|
|
95
|
+
|
|
96
|
+
|
|
97
|
+
def st_difference(
|
|
98
|
+
series: bigframes.series.Series, other: bigframes.series.Series
|
|
99
|
+
) -> bigframes.series.Series:
|
|
100
|
+
"""
|
|
101
|
+
Returns a `GEOGRAPHY` that represents the point set difference of
|
|
102
|
+
`geography_1` and `geography_2`. Therefore, the result consists of the part
|
|
103
|
+
of `geography_1` that doesn't intersect with `geography_2`.
|
|
104
|
+
|
|
105
|
+
If `geometry_1` is completely contained in `geometry_2`, then `ST_DIFFERENCE`
|
|
106
|
+
returns an empty `GEOGRAPHY`.
|
|
107
|
+
|
|
108
|
+
.. note::
|
|
109
|
+
BigQuery's Geography functions, like `st_difference`, interpret the geometry
|
|
110
|
+
data type as a point set on the Earth's surface. A point set is a set
|
|
111
|
+
of points, lines, and polygons on the WGS84 reference spheroid, with
|
|
112
|
+
geodesic edges. See: https://cloud.google.com/bigquery/docs/geospatial-data
|
|
113
|
+
|
|
114
|
+
**Examples:**
|
|
115
|
+
|
|
116
|
+
>>> import bigframes as bpd
|
|
117
|
+
>>> import bigframes.bigquery as bbq
|
|
118
|
+
>>> import bigframes.geopandas
|
|
119
|
+
>>> from shapely.geometry import Polygon, LineString, Point
|
|
120
|
+
>>> bpd.options.display.progress_bar = None
|
|
121
|
+
|
|
122
|
+
We can check two GeoSeries against each other, row by row:
|
|
123
|
+
|
|
124
|
+
>>> s1 = bigframes.geopandas.GeoSeries(
|
|
125
|
+
... [
|
|
126
|
+
... Polygon([(0, 0), (2, 2), (0, 2)]),
|
|
127
|
+
... Polygon([(0, 0), (2, 2), (0, 2)]),
|
|
128
|
+
... LineString([(0, 0), (2, 2)]),
|
|
129
|
+
... LineString([(2, 0), (0, 2)]),
|
|
130
|
+
... Point(0, 1),
|
|
131
|
+
... ],
|
|
132
|
+
... )
|
|
133
|
+
>>> s2 = bigframes.geopandas.GeoSeries(
|
|
134
|
+
... [
|
|
135
|
+
... Polygon([(0, 0), (1, 1), (0, 1)]),
|
|
136
|
+
... LineString([(1, 0), (1, 3)]),
|
|
137
|
+
... LineString([(2, 0), (0, 2)]),
|
|
138
|
+
... Point(1, 1),
|
|
139
|
+
... Point(0, 1),
|
|
140
|
+
... ],
|
|
141
|
+
... index=range(1, 6),
|
|
142
|
+
... )
|
|
143
|
+
|
|
144
|
+
>>> s1
|
|
145
|
+
0 POLYGON ((0 0, 2 2, 0 2, 0 0))
|
|
146
|
+
1 POLYGON ((0 0, 2 2, 0 2, 0 0))
|
|
147
|
+
2 LINESTRING (0 0, 2 2)
|
|
148
|
+
3 LINESTRING (2 0, 0 2)
|
|
149
|
+
4 POINT (0 1)
|
|
150
|
+
dtype: geometry
|
|
151
|
+
|
|
152
|
+
>>> s2
|
|
153
|
+
1 POLYGON ((0 0, 1 1, 0 1, 0 0))
|
|
154
|
+
2 LINESTRING (1 0, 1 3)
|
|
155
|
+
3 LINESTRING (2 0, 0 2)
|
|
156
|
+
4 POINT (1 1)
|
|
157
|
+
5 POINT (0 1)
|
|
158
|
+
dtype: geometry
|
|
159
|
+
|
|
160
|
+
>>> bbq.st_difference(s1, s2)
|
|
161
|
+
0 None
|
|
162
|
+
1 POLYGON ((0.99954 1, 2 2, 0 2, 0 1, 0.99954 1))
|
|
163
|
+
2 LINESTRING (0 0, 1 1.00046, 2 2)
|
|
164
|
+
3 GEOMETRYCOLLECTION EMPTY
|
|
165
|
+
4 POINT (0 1)
|
|
166
|
+
5 None
|
|
167
|
+
dtype: geometry
|
|
168
|
+
|
|
169
|
+
We can also check difference of single shapely geometries:
|
|
170
|
+
|
|
171
|
+
>>> polygon_s1 = bigframes.geopandas.GeoSeries(
|
|
172
|
+
... [
|
|
173
|
+
... Polygon([(0, 0), (10, 0), (10, 10), (0, 0)])
|
|
174
|
+
... ]
|
|
175
|
+
... )
|
|
176
|
+
>>> polygon_s2 = bigframes.geopandas.GeoSeries(
|
|
177
|
+
... [
|
|
178
|
+
... Polygon([(4, 2), (6, 2), (8, 6), (4, 2)])
|
|
179
|
+
... ]
|
|
180
|
+
... )
|
|
181
|
+
|
|
182
|
+
>>> polygon_s1
|
|
183
|
+
0 POLYGON ((0 0, 10 0, 10 10, 0 0))
|
|
184
|
+
dtype: geometry
|
|
185
|
+
|
|
186
|
+
>>> polygon_s2
|
|
187
|
+
0 POLYGON ((4 2, 6 2, 8 6, 4 2))
|
|
188
|
+
dtype: geometry
|
|
189
|
+
|
|
190
|
+
>>> bbq.st_difference(polygon_s1, polygon_s2)
|
|
191
|
+
0 POLYGON ((0 0, 10 0, 10 10, 0 0), (8 6, 6 2, 4...
|
|
192
|
+
dtype: geometry
|
|
193
|
+
|
|
194
|
+
Additionally, we can check difference of a GeoSeries against a single shapely geometry:
|
|
195
|
+
|
|
196
|
+
>>> bbq.st_difference(s1, polygon_s2)
|
|
197
|
+
0 POLYGON ((0 0, 2 2, 0 2, 0 0))
|
|
198
|
+
1 None
|
|
199
|
+
2 None
|
|
200
|
+
3 None
|
|
201
|
+
4 None
|
|
202
|
+
dtype: geometry
|
|
203
|
+
|
|
204
|
+
Args:
|
|
205
|
+
other (bigframes.series.Series or geometric object):
|
|
206
|
+
The GeoSeries (elementwise) or geometric object to find the difference to.
|
|
207
|
+
|
|
208
|
+
Returns:
|
|
209
|
+
bigframes.series.Series:
|
|
210
|
+
A GeoSeries of the points in each aligned geometry that are not
|
|
211
|
+
in other.
|
|
212
|
+
"""
|
|
213
|
+
return series._apply_binary_op(other, ops.geo_st_difference_op)
|
|
214
|
+
|
|
215
|
+
|
|
216
|
+
def st_intersection(
|
|
217
|
+
series: bigframes.series.Series, other: bigframes.series.Series
|
|
218
|
+
) -> bigframes.series.Series:
|
|
219
|
+
"""
|
|
220
|
+
Returns a `GEOGRAPHY` that represents the point set intersection of the two
|
|
221
|
+
input `GEOGRAPHYs`. Thus, every point in the intersection appears in both
|
|
222
|
+
`geography_1` and `geography_2`.
|
|
223
|
+
|
|
224
|
+
.. note::
|
|
225
|
+
BigQuery's Geography functions, like `st_intersection`, interpret the geometry
|
|
226
|
+
data type as a point set on the Earth's surface. A point set is a set
|
|
227
|
+
of points, lines, and polygons on the WGS84 reference spheroid, with
|
|
228
|
+
geodesic edges. See: https://cloud.google.com/bigquery/docs/geospatial-data
|
|
229
|
+
|
|
230
|
+
**Examples:**
|
|
231
|
+
|
|
232
|
+
>>> import bigframes as bpd
|
|
233
|
+
>>> import bigframes.bigquery as bbq
|
|
234
|
+
>>> import bigframes.geopandas
|
|
235
|
+
>>> from shapely.geometry import Polygon, LineString, Point
|
|
236
|
+
>>> bpd.options.display.progress_bar = None
|
|
237
|
+
|
|
238
|
+
We can check two GeoSeries against each other, row by row.
|
|
239
|
+
|
|
240
|
+
>>> s1 = bigframes.geopandas.GeoSeries(
|
|
241
|
+
... [
|
|
242
|
+
... Polygon([(0, 0), (2, 2), (0, 2)]),
|
|
243
|
+
... Polygon([(0, 0), (2, 2), (0, 2)]),
|
|
244
|
+
... LineString([(0, 0), (2, 2)]),
|
|
245
|
+
... LineString([(2, 0), (0, 2)]),
|
|
246
|
+
... Point(0, 1),
|
|
247
|
+
... ],
|
|
248
|
+
... )
|
|
249
|
+
>>> s2 = bigframes.geopandas.GeoSeries(
|
|
250
|
+
... [
|
|
251
|
+
... Polygon([(0, 0), (1, 1), (0, 1)]),
|
|
252
|
+
... LineString([(1, 0), (1, 3)]),
|
|
253
|
+
... LineString([(2, 0), (0, 2)]),
|
|
254
|
+
... Point(1, 1),
|
|
255
|
+
... Point(0, 1),
|
|
256
|
+
... ],
|
|
257
|
+
... index=range(1, 6),
|
|
258
|
+
... )
|
|
259
|
+
|
|
260
|
+
>>> s1
|
|
261
|
+
0 POLYGON ((0 0, 2 2, 0 2, 0 0))
|
|
262
|
+
1 POLYGON ((0 0, 2 2, 0 2, 0 0))
|
|
263
|
+
2 LINESTRING (0 0, 2 2)
|
|
264
|
+
3 LINESTRING (2 0, 0 2)
|
|
265
|
+
4 POINT (0 1)
|
|
266
|
+
dtype: geometry
|
|
267
|
+
|
|
268
|
+
>>> s2
|
|
269
|
+
1 POLYGON ((0 0, 1 1, 0 1, 0 0))
|
|
270
|
+
2 LINESTRING (1 0, 1 3)
|
|
271
|
+
3 LINESTRING (2 0, 0 2)
|
|
272
|
+
4 POINT (1 1)
|
|
273
|
+
5 POINT (0 1)
|
|
274
|
+
dtype: geometry
|
|
275
|
+
|
|
276
|
+
>>> bbq.st_intersection(s1, s2)
|
|
277
|
+
0 None
|
|
278
|
+
1 POLYGON ((0 0, 0.99954 1, 0 1, 0 0))
|
|
279
|
+
2 POINT (1 1.00046)
|
|
280
|
+
3 LINESTRING (2 0, 0 2)
|
|
281
|
+
4 GEOMETRYCOLLECTION EMPTY
|
|
282
|
+
5 None
|
|
283
|
+
dtype: geometry
|
|
284
|
+
|
|
285
|
+
We can also do intersection of each geometry and a single shapely geometry:
|
|
286
|
+
|
|
287
|
+
>>> bbq.st_intersection(s1, bigframes.geopandas.GeoSeries([Polygon([(0, 0), (1, 1), (0, 1)])]))
|
|
288
|
+
0 POLYGON ((0 0, 0.99954 1, 0 1, 0 0))
|
|
289
|
+
1 None
|
|
290
|
+
2 None
|
|
291
|
+
3 None
|
|
292
|
+
4 None
|
|
293
|
+
dtype: geometry
|
|
294
|
+
|
|
295
|
+
Args:
|
|
296
|
+
other (GeoSeries or geometric object):
|
|
297
|
+
The Geoseries (elementwise) or geometric object to find the
|
|
298
|
+
intersection with.
|
|
299
|
+
|
|
300
|
+
Returns:
|
|
301
|
+
bigframes.geopandas.GeoSeries:
|
|
302
|
+
The Geoseries (elementwise) of the intersection of points in
|
|
303
|
+
each aligned geometry with other.
|
|
304
|
+
"""
|
|
305
|
+
return series._apply_binary_op(other, ops.geo_st_intersection_op)
|