dcapwell commented on code in PR #3305:
URL: https://github.com/apache/cassandra/pull/3305#discussion_r1602293391
##########
src/java/org/apache/cassandra/db/virtual/AccordVirtualTables.java:
##########
@@ -42,22 +46,24 @@ public static Collection<VirtualTable> getAll(String
keyspace)
if (!DatabaseDescriptor.getAccordTransactionsEnabled())
return Collections.emptyList();
- return Arrays.asList(
- new Epoch(keyspace)
+ return List.of(
+ new Epoch(keyspace),
+ new CommandStoreCache(keyspace)
);
}
@VisibleForTesting
public static final class Epoch extends AbstractVirtualTable
Review Comment:
not for this patch... but wondering if we should drop this table... I added
it as a hack when we didn't have TCM...
--
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]