dcapwell commented on code in PR #3416:
URL: https://github.com/apache/cassandra/pull/3416#discussion_r1777748938
##########
src/java/org/apache/cassandra/schema/KeyspaceMetadata.java:
##########
@@ -84,6 +85,12 @@ private KeyspaceMetadata(String keyspaceName, Kind kind,
KeyspaceParams params,
this.replicationStrategy =
AbstractReplicationStrategy.createReplicationStrategy(keyspaceName,
params.replication);
}
+ @VisibleForTesting
+ public static KeyspaceMetadata createUnsafe(String keyspaceName, Kind
kind, KeyspaceParams params, Tables tables, Views views, Types types,
UserFunctions functions)
Review Comment:
used by fuzz testing....
##########
src/java/org/apache/cassandra/schema/ReplicationParams.java:
##########
@@ -63,6 +63,11 @@ private ReplicationParams(Class<? extends
AbstractReplicationStrategy> klass, Ma
this.options = ImmutableMap.copyOf(options);
}
+ public static ReplicationParams copy(AbstractReplicationStrategy strategy)
Review Comment:
used by fuzz testing
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]