-
Notifications
You must be signed in to change notification settings - Fork 31
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Uncoalesced tables with no partitioning columns do not render #1763
Comments
Reproducible using just this snippet: from deephaven import parquet, new_table
parquet.write(new_table({"Foo": [1, 2, 3]}), "my-table.parquet")
x = parquet.read("my-table.parquet") @rcaudy I want to confirm I'm fixing the right thing. So in the example above, the table |
- When there are no partition columns, we should just load the whole table instead of hanging - Tested with the snippet in the ticket - Fixes deephaven#1763
Yes, exactly. That's the only way to turn it into something you can render. |
As of deephaven/deephaven-core#5078, the following code
no longer renders
x
in the UI - it just spins.x
is of typeio.deephaven.engine.table.impl.SimpleSourceTable
, which is an uncoalesced table (with a single / implicit partition?).The text was updated successfully, but these errors were encountered: