sqlectron / sqlectron-gui

A simple and lightweight SQL client desktop with cross database and platform support.
https://sqlectron.github.io/
MIT License
4.58k stars 525 forks source link

Cassandra long values are shown strangely #713

Open lapo-luchini opened 2 years ago

lapo-luchini commented 2 years ago

Example query:

SELECT CAST(COUNT(*) AS int) AS cint, COUNT(*) AS clong FROM message;

Result:

[
  {
    "cint": 24798,
    "clong": {
      "low": 24798,
      "high": 0,
      "unsigned": false
    }
  }
]