Skip to content
Merged
Changes from 1 commit
Commits
Show all changes
59 commits
Select commit Hold shift + click to select a range
91ec183
feat: Add a unique session_id to Session, allowing manual cleanup of …
milkshakeiii Mar 30, 2024
d617ef0
test not closing by default
milkshakeiii Mar 30, 2024
faa4c3f
do close in session test for test
milkshakeiii Mar 30, 2024
3e3a47c
skip both tests
milkshakeiii Mar 31, 2024
e0029b5
move tests to large and use page size to speed up
milkshakeiii Mar 31, 2024
f01416d
skip cleanup in auth failure test
milkshakeiii Mar 31, 2024
6794fe7
fix a doctest
milkshakeiii Mar 31, 2024
06de060
try to fix kokoro e2e
milkshakeiii Apr 1, 2024
b11ec2a
only skip one test
milkshakeiii Apr 1, 2024
d9cb6d8
skip expensive cleanup in tests
milkshakeiii Apr 1, 2024
3e34042
skip both tests
milkshakeiii Apr 1, 2024
1ddff94
Merge branch 'main' into b331971774-clean-up-tables
milkshakeiii Apr 1, 2024
d43398a
don't scan all tables usually
milkshakeiii Apr 1, 2024
d66fc57
update comment
milkshakeiii Apr 1, 2024
379622e
update comment
milkshakeiii Apr 2, 2024
9bfa435
Merge branch 'main' into b331971774-clean-up-tables
milkshakeiii Apr 2, 2024
a5e48af
update comment
milkshakeiii Apr 2, 2024
9cbbdb1
Update third_party/bigframes_vendored/pandas/core/frame.py
milkshakeiii Apr 2, 2024
96ec88a
Update bigframes/core/global_session.py
milkshakeiii Apr 2, 2024
8462363
Update bigframes/pandas/__init__.py
milkshakeiii Apr 2, 2024
db2c809
Update bigframes/session/__init__.py
milkshakeiii Apr 2, 2024
b672331
Update bigframes/pandas/__init__.py
milkshakeiii Apr 2, 2024
41b2965
🦉 Updates from OwlBot post-processor
gcf-owl-bot[bot] Apr 2, 2024
cd1925b
Update bigframes/pandas/__init__.py
milkshakeiii Apr 2, 2024
5bb1fe6
Address some of the comments
milkshakeiii Apr 2, 2024
27ee64b
add max_results to list calls and unskip test
milkshakeiii Apr 2, 2024
90dcc31
check for special purpose datasets
milkshakeiii Apr 2, 2024
ceff5f3
warn when global session is closed with expired credentials
milkshakeiii Apr 2, 2024
367f78d
use yield fixture to clean up session
milkshakeiii Apr 3, 2024
5a9e687
improve comment
milkshakeiii Apr 3, 2024
ebc6522
move slow test to different region
milkshakeiii Apr 3, 2024
b517014
Merge branch 'main' into b331971774-clean-up-tables
tswast Apr 3, 2024
34862e2
Update bigframes/core/global_session.py
milkshakeiii Apr 3, 2024
6d0217d
Update bigframes/dataframe.py
milkshakeiii Apr 3, 2024
4dc057b
traceback
milkshakeiii Apr 3, 2024
e6a5e45
Merge branch 'main' into b331971774-clean-up-tables
milkshakeiii Apr 8, 2024
5cbb797
Update bigframes/pandas/__init__.py
milkshakeiii Apr 8, 2024
179f2c4
Merge branch 'main' into b331971774-clean-up-tables
milkshakeiii Apr 12, 2024
d222536
Merge branch 'main' into b331971774-clean-up-tables
milkshakeiii Apr 12, 2024
f9e2888
don't scan datasets
milkshakeiii Apr 16, 2024
7e8acd7
change default param behavior
milkshakeiii Apr 16, 2024
e422cd3
try 10000 max results
milkshakeiii Apr 16, 2024
0421509
Merge branch 'main' into b331971774-clean-up-tables
milkshakeiii Apr 17, 2024
1ce15ac
format fix
milkshakeiii Apr 17, 2024
d0aff59
🦉 Updates from OwlBot post-processor
gcf-owl-bot[bot] Apr 17, 2024
10cada8
Merge branch 'b331971774-clean-up-tables' of https://github.com/googl…
gcf-owl-bot[bot] Apr 17, 2024
1551354
still use alternative region
milkshakeiii Apr 17, 2024
ed2bf70
Merge branch 'main' into b331971774-clean-up-tables
milkshakeiii Apr 23, 2024
529e015
Update bigframes/pandas/__init__.py
milkshakeiii Apr 23, 2024
6fda625
🦉 Updates from OwlBot post-processor
gcf-owl-bot[bot] Apr 23, 2024
75c7cae
Merge branch 'main' into b331971774-clean-up-tables
milkshakeiii May 1, 2024
deebc64
address some of the comments
milkshakeiii May 1, 2024
66f014c
docstring fix
milkshakeiii May 1, 2024
c827465
add warning
milkshakeiii May 1, 2024
07fe6b3
don't use global session in test_clean_up_by_session_id
milkshakeiii May 1, 2024
76f73fa
Update bigframes/pandas/__init__.py
tswast May 2, 2024
3669d97
Merge branch 'main' into b331971774-clean-up-tables
tswast May 2, 2024
ac24209
avoid possible changing global session
milkshakeiii May 2, 2024
c1c11f6
Merge branch 'main' into b331971774-clean-up-tables
milkshakeiii May 2, 2024
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
Prev Previous commit
Merge branch 'main' into b331971774-clean-up-tables
  • Loading branch information
milkshakeiii committed May 2, 2024
commit c1c11f6bd95fd58f3a273307d241a9d12035453d
4 changes: 4 additions & 0 deletions bigframes/exceptions.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,3 +23,7 @@ class UnknownLocationWarning(Warning):

class CleanupFailedWarning(Warning):
"""Bigframes failed to clean up a table resource."""


class NoDefaultIndexError(ValueError):
"""Unable to create a default index."""
You are viewing a condensed version of this merge commit. You can view the full changes here.