BREAKING CHANGE: the table() method on MultiJoinTable has been changed to @property, which means to access the underlying table of a multi join result, the user can no longer call the table() method but instead just use the table attribute on a MultiJoinTable instance.
This issue was auto-generated
PR: https://github.com/deephaven/deephaven-core/pull/6020 Author: jmao-denver
Original PR Body
Fixes #5884
BREAKING CHANGE: the
table()
method onMultiJoinTable
has been changed to@property
, which means to access the underlying table of a multi join result, the user can no longer call thetable()
method but instead just use thetable
attribute on aMultiJoinTable
instance.