We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Description
When using the "Rollup rows" feature, the model.groupedColumns array contains 2 entries for each group column.
model.groupedColumns
Steps to reproduce
from deephaven import empty_table, time_table static_table = empty_table(25).update_view(formulas=[ "MyString=new String(`a`+i)", "MyChar= new Character((char) ((i%26)+97))", ])
Expected results
The model.groupedColumns array should contain the columns that were added in the rollup.
Actual results
model.groupedColumns contains 2 columns for each column added in the rollup
e.g. Here's the above query with MyChar and MyString added as rollup columns:
Versions Engine Version: 0.22.0 Web UI Version: 0.30.1 Java Version: 17.0.6 Barrage Version: 0.5.0
The text was updated successfully, but these errors were encountered:
JS API should only show non-constituent columns in groupedColumns array
9502dea
Fixes deephaven#3477
b7e72c9
niloc132
Successfully merging a pull request may close this issue.
Description
When using the "Rollup rows" feature, the
model.groupedColumns
array contains 2 entries for each group column.Steps to reproduce
Expected results
The model.groupedColumns array should contain the columns that were added in the rollup.
Actual results
model.groupedColumns contains 2 columns for each column added in the rollup
e.g. Here's the above query with MyChar and MyString added as rollup columns:
Versions
Engine Version: 0.22.0
Web UI Version: 0.30.1
Java Version: 17.0.6
Barrage Version: 0.5.0
The text was updated successfully, but these errors were encountered: