-
Notifications
You must be signed in to change notification settings - Fork 80
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
Add key column and column properties to JsPartitionedTable #4789
Add key column and column properties to JsPartitionedTable #4789
Conversation
web/client-api/src/main/java/io/deephaven/web/client/api/JsPartitionedTable.java
Outdated
Show resolved
Hide resolved
web/client-api/src/main/java/io/deephaven/web/client/api/JsPartitionedTable.java
Outdated
Show resolved
Hide resolved
web/client-api/src/main/java/io/deephaven/web/client/api/JsPartitionedTable.java
Show resolved
Hide resolved
web/client-api/src/main/java/io/deephaven/web/client/api/JsPartitionedTable.java
Outdated
Show resolved
Hide resolved
web/client-api/src/main/java/io/deephaven/web/client/api/JsPartitionedTable.java
Outdated
Show resolved
Hide resolved
* @return Table | ||
*/ | ||
@JsProperty | ||
public JsTable getKeyTable() { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is probably not safe to return - what are you trying to do with this as an api consumer?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The new UI being implemented for Partitioned Tables (spec) need to be able to display the table containing all the possible keys.
7b5b2bd
to
cac3c63
Compare
cac3c63
to
7c16c10
Compare
Added
getKeyColumns
,getColumns
, andgetKeyTable
toJsPartitionedTable
.Resolves #4773.