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
When you use TotalsTableBuilder programmatically to set a TotalsTable on a table, the Web UI doesn't bother showing that totals table at all.
Steps to reproduce
Run the following code (Groovy)
importio.deephaven.engine.util.TotalsTableBuilderimportio.deephaven.engine.util.TotalsTableBuilder.AggTypedef ttb =newTotalsTableBuilder()
source = emptyTable(100).update("X = sqrt(i)").update("Y = X * i")
builder = ttb.setFormat("Y", "Sum", "X < 5 ? BLUE : RED")
result = builder.applyToTable(source)
Observe table result
Expected results
2. result should include the totals, and they should be accessible through the UI
Actual results
2. result does not include the totals, and there's no way to view the totals in the configuration set programmatically. Note: We would also need to check the showTotalsByDefault on the config as well
Description
When you use
TotalsTableBuilder
programmatically to set aTotalsTable
on a table, the Web UI doesn't bother showing that totals table at all.Steps to reproduce
result
Expected results
2.
result
should include the totals, and they should be accessible through the UIActual results
2.
result
does not include the totals, and there's no way to view the totals in the configuration set programmatically. Note: We would also need to check theshowTotalsByDefault
on the config as wellAdditional details and attachments
Context: https://illumon.slack.com/archives/CT39A21GV/p1690476128724479?thread_ts=1690468630.100259&cid=CT39A21GV
Versions
Engine Version: 0.27.0
Web UI Version: 0.44.1
Java Version: 11.0.19
Barrage Version: 0.6.0
The text was updated successfully, but these errors were encountered: