maedhroz commented on code in PR #3305:
URL: https://github.com/apache/cassandra/pull/3305#discussion_r1611864844
##########
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:
Yeah, I think I'll just clean it up/remove it while I'm here.
--
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]