Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -79,18 +79,18 @@ public class BTreeGlobalIndexBuilder implements Serializable {

private static final double FLOATING = 1.2;

private final FileStoreTable table;
private final RowType rowType;
private final Options options;
private final long recordsPerRange;
protected final FileStoreTable table;
protected final RowType rowType;
protected final Options options;
protected final long recordsPerRange;

private String indexType;
private DataField indexField;
protected String indexType;
protected DataField indexField;

// readRowType is composed by partition fields, indexed field and _ROW_ID field
private RowType readRowType;
protected RowType readRowType;

@Nullable private PartitionPredicate partitionPredicate;
@Nullable protected PartitionPredicate partitionPredicate;

public BTreeGlobalIndexBuilder(Table table) {
this.table = (FileStoreTable) table;
Expand Down
Loading