Skip to content

TablePlus crashes when trying to open a table in Cassandra #222

Open
@emp1re

Description

@emp1re

After writing something in a table, and trying to open a table in Table Plus, the application crashes.

Please answer the questions below, it helps us to track the issue.

  1. Database version (Ex: PostgreSQL 10.0): Cassandra v.5.0.2

  2. TablePlus version (the number on the welcome or about screen, Ex: build 81): 1.2.2 (258) Trial

  3. Linux distro (Ex: Ubuntu 18.04): Ubuntu 20.04

  4. The steps to reproduce this issue:

$ docker pull cassandra:latest

$ docker network create cassandra

$ docker run --rm -d -p 9042:9042 -e HEAP_NEWSIZE=128M -e MAX_HEAP_SIZE=512M -dit --memory="1024m" --cpus="2.0" --cpu-shares="2048" --name cassandra --hostname cassandra --network cassandra cassandra

create keyspace if not exists test WITH REPLICATION = {
'class' : 'SimpleStrategy',
'replication_factor' : 1
};

CREATE TABLE IF NOT EXISTS test.user_test (
email text,
created_at timeuuid,
first_name text,
last_name text,
PRIMARY KEY(email)
);

INSERT INTO test.user_test (email, created_at, first_name, last_name) VALUES
('[email protected]', now(), 'John', 'Snow');

Noted: If the bug is related to data, please attach an example SQL data.

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions