You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fix: Check for the getBaseTable API before calling it (#2168)
- If it's not available, just fallback to the getKeyTable API (which we
were using before)
- Tested against deephaven-core 0.35.1
```
from deephaven import new_table
x = new_table({
"Foo": [0, 1, 2, 0, 1, 2],
"Bar": [4, 5, 6, 7, 8, 9]}
).partition_by(["Foo"])
```
0 commit comments