Description
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.
-
Database version (Ex: PostgreSQL 10.0): Cassandra v.5.0.2
-
TablePlus version (the number on the welcome or about screen, Ex: build 81): 1.2.2 (258) Trial
-
Linux distro (Ex: Ubuntu 18.04): Ubuntu 20.04
-
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.