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
Create a table with a user defined type (ex: CREATE TYPE space.container (weight text, height text );)
Insert some data in the table with the user defined type (ex: {weight: "100", height: "100"})
Perform a select with Cassandra Workbench
In the result panel in the container column instead of seeing something like {weight: "100", height: "100"} you see [object Object]
Expected behavior
You should see in the result table the type as {weight: "100", height: "100"} so that you are able to read it.
System info (please complete the following information):
OS: ubuntu 18.04
Cassandra version 3.0.13
vscode version 1.30.2
Additional context
If you select the key of the object then it will work. For example: SELECT container FROM ... results in [object Object] but SELECT container.weight FROM ... results in 100
The text was updated successfully, but these errors were encountered:
Describe the bug
When you perform a select with a user defined type (https://docs.datastax.com/en/cql/3.3/cql/cql_reference/cqlCreateType.html) the results are not in human readable format, but instead show up as [object Object]
To Reproduce
Steps to reproduce the behavior:
Expected behavior
You should see in the result table the type as {weight: "100", height: "100"} so that you are able to read it.
System info (please complete the following information):
Additional context
If you select the key of the object then it will work. For example: SELECT container FROM ... results in [object Object] but SELECT container.weight FROM ... results in 100
The text was updated successfully, but these errors were encountered: