We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
After writing something in a table, and trying to open a table in Table Plus, the application crashes.
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.
The text was updated successfully, but these errors were encountered:
Me Also happend to me +1
Sorry, something went wrong.
No branches or pull requests
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.
The text was updated successfully, but these errors were encountered: