You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm getting com.datastax.oss.driver.api.core.servererrors.InvalidQueryException: Virtual keyspace 'system_views' is not user-modifiable when calling
@AfterAll
public static void tearDown() {
/** cleaning consist in dropping all existing keyspace except "system" :*/
/** At the moment there's no way to stop Cassandra. Cassandra is started in the same JVM as your tests. It will be shutdown when the JVM used by your tests is shutdown */
EmbeddedCassandraServerHelper.cleanEmbeddedCassandra();
}
I suspect it's due to the system_views being omitted in the EmbeddedCassandraServerHelper. What's the best way to fix it?
The text was updated successfully, but these errors were encountered:
An-Nadein
added a commit
to An-Nadein/cassandra-unit
that referenced
this issue
Oct 12, 2021
setup:
jdk 17
junit 5
maven 3.6.3
cassandra driver 4.9
I'm getting
com.datastax.oss.driver.api.core.servererrors.InvalidQueryException: Virtual keyspace 'system_views' is not user-modifiable
when callingI suspect it's due to the
system_views
being omitted in theEmbeddedCassandraServerHelper
. What's the best way to fix it?The text was updated successfully, but these errors were encountered: