tableDisplay.setHeader(1, highlight(getTruncatedVersion("rowid")));
tableDisplay.setHeader(2, highlight(getTruncatedVersion("recordid")));
Map<String, List<String>> columnOrder = new HashMap<String, List<String>>();
int result = 0;
for (BlurResult blurResult : blurResults.getResults()) {
FetchResult fetchResult = blurResult.getFetchResult();
FetchRowResult rowResult = fetchResult.getRowResult();
if (rowResult != null) {
Row row = rowResult.getRow();
String id = row.getId();
tableDisplay.set(1, line.get(), white(getTruncatedVersion(toStringBinary(id))));
List<Record> records = order(row.getRecords());
String currentFamily = "#";
for (Record record : records) {
currentFamily = displayRecordInRowMultiFamilyView(result, tableDisplay, line, columnOrder, currentFamily,
record);
}
} else {
String currentFamily = "#";
FetchRecordResult recordResult = fetchResult.getRecordResult();
Record record = recordResult.getRecord();
currentFamily = displayRecordInRowMultiFamilyView(result, tableDisplay, line, columnOrder, currentFamily,
record);
}
result++;