Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions bigframes/series.py
Original file line number Diff line number Diff line change
Expand Up @@ -317,6 +317,14 @@ def list(self) -> lists.ListAccessor:

@property
def blob(self) -> blob.BlobAccessor:
"""
Accessor for Blob operations.
"""
warnings.warn(
"The blob accessor is deprecated and will be removed in a future release. Use bigframes.bigquery.obj functions instead.",
category=bfe.ApiDeprecationWarning,
stacklevel=2,
)
return blob.BlobAccessor(self)

@property
Expand Down
5 changes: 5 additions & 0 deletions bigframes/session/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2291,6 +2291,11 @@ def read_gbq_object_table(
bigframes.pandas.DataFrame:
Result BigFrames DataFrame.
"""
warnings.warn(
"read_gbq_object_table is deprecated and will be removed in a future release. Use read_gbq with 'ref' column instead.",
category=bfe.ApiDeprecationWarning,
stacklevel=2,
)
# TODO(garrettwu): switch to pseudocolumn when b/374988109 is done.
table = self.bqclient.get_table(object_table)
connection = table._properties["externalDataConfiguration"]["connectionId"]
Expand Down
Loading