-
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
Column grouping layout hints are ignored on rollup tables #2035
Comments
Tried to translate the snippet to Core python: from deephaven import empty_table, agg
source = empty_table(100).update(["K1 = ii", "K2=K1%10", "Y=randomDouble(0, 10)", "Z=randomDouble(0, 10)"])
result_norollup = source.layout_hints(column_groups=[{"name": "MyCols", "children": ["Y", "Z"]}])
result_rollup = source.rollup([agg.avg(["Y", "Z"])], "K2", False).layout_hints(column_groups=[{"name": "MyCols", "children": ["Y", "Z"]}]) However get an error because So I don't think this can actually be reproduced in Core Python... EDIT: It looks like |
- Related to DH-17076 - Needed a Core patch: deephaven/deephaven-core#5543 - Tested using both the Python and Groovy snippets from the ticket - Fixes deephaven#2035
- Related to DH-17076 - Needed a Core patch: deephaven/deephaven-core#5555 - Tested using both the Groovy snippet from the ticket - Fixes #2035
…aven#2041) - Related to DH-17076 - Needed a Core patch: deephaven/deephaven-core#5555 - Tested using both the Groovy snippet from the ticket - Fixes deephaven#2035
#2050) - Related to DH-17076 - Needed a Core patch: deephaven/deephaven-core#5555 - Tested using both the Groovy snippet from the ticket - Fixes #2035
A customer noticed that column groupings from layout hints are respected on regular tables, but ignored on rollup tables. (The columns can be grouped manually afterward and it works; the issue is just the layout hints being ignored.)
DH-17076
Only reproducible in Groovy:
For some reason,
layout_hints
is not an available method onRollupTable
in Python: https://github.com/deephaven/deephaven-core/blob/dbf2b2db31ac3e982fc6c432b66d3cb688fda431/py/server/deephaven/table.py#L169The text was updated successfully, but these errors were encountered: