Skip to content

Commit

Permalink
update var name.
Browse files Browse the repository at this point in the history
  • Loading branch information
cpwright committed Jan 22, 2025
1 parent 63b3733 commit 99a2efc
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -253,9 +253,9 @@ RowSet get(final long rowKey) {
}
}

private Table buildTable(final boolean lazyRowsetMerge) {
private Table buildTable(final boolean lazyRowSetMerge) {
if (lazyTable != null) {
if (lazyRowsetMerge) {
if (lazyRowSetMerge) {
return lazyTable;
}
}
Expand All @@ -268,7 +268,7 @@ private Table buildTable(final boolean lazyRowsetMerge) {
// scratch. The first step is to force our rowsets into memory, in parallel.
partitionedTable = lazyPartitionedTable.transform(t -> t.update(ROW_SET_COLUMN_NAME));
} else {
partitionedTable = buildPartitionedTable(lazyRowsetMerge);
partitionedTable = buildPartitionedTable(lazyRowSetMerge);
}

// Merge all the location index tables into a single table
Expand All @@ -278,7 +278,7 @@ private Table buildTable(final boolean lazyRowsetMerge) {
lookupFunction = AggregationProcessor.getRowLookup(groupedByKeyColumns);

final Table combined;
if (lazyRowsetMerge) {
if (lazyRowSetMerge) {
final ColumnSource<ObjectVector<RowSet>> vectorColumnSource =
groupedByKeyColumns.getColumnSource(ROW_SET_COLUMN_NAME);

Expand Down

0 comments on commit 99a2efc

Please sign in to comment.