axonops / axonops-workbench

AxonOps™ Workbench for Apache Cassandra® - Desktop application for Mac, Windows and Linux
https://axonops.com
Apache License 2.0
11 stars 0 forks source link

[bug] Windows: CQL query results are not displayed correctly #230

Closed rgooding closed 3 months ago

rgooding commented 3 months ago

When I run a CQL query on Windows the results are not being displayed correctly. The table queried in the screenshot below has this schema:

CREATE TABLE keyspace1.standard1 (
    key blob PRIMARY KEY,
    "C0" blob,
    "C1" blob,
    "C2" blob,
    "C3" blob,
    "C4" blob
)

It looks like it has taken one of the values as the field names then only displayed data for the first row: Screenshot 2024-08-12 at 13 19 06

mhmdkrmabd commented 3 months ago

Working on that

mhmdkrmabd commented 3 months ago

@millerjp @rgooding, the cause of the issue - on Windows - is the addition of escape character - backslash - more than needed, causes a bad JSON structure, handled that, that's the final result:

Image