Skip to content
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

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

Open
emp1re opened this issue Dec 10, 2024 · 1 comment
Open

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

emp1re opened this issue Dec 10, 2024 · 1 comment

Comments

@emp1re
Copy link

emp1re commented Dec 10, 2024

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.

@lokmanzeddoun
Copy link

Me Also happend to me +1

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants