kevinrr888 commented on code in PR #5031:
URL: https://github.com/apache/accumulo/pull/5031#discussion_r2069033443
##########
core/src/main/java/org/apache/accumulo/core/fate/user/UserFateStore.java:
##########
@@ -270,8 +271,8 @@ protected Stream<FateIdStatus>
getTransactions(EnumSet<TStatus> statuses) {
Scanner scanner = context.createScanner(tableName, Authorizations.EMPTY);
scanner.setRange(new Range());
RowFateStatusFilter.configureScanner(scanner, statuses);
- TxColumnFamily.STATUS_COLUMN.fetch(scanner);
- TxColumnFamily.RESERVATION_COLUMN.fetch(scanner);
+ TxAdminColumnFamily.STATUS_COLUMN.fetch(scanner);
+ TxAdminColumnFamily.RESERVATION_COLUMN.fetch(scanner);
TxInfoColumnFamily.FATE_OP_COLUMN.fetch(scanner);
Review Comment:
https://github.com/apache/accumulo/pull/5301 added fetching FATE_OP_COLUMN
here. This should be added to the same group
--
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]