Right now, it is only possible to build wheel indices across all the data in a TableProvider. Provide an option to allow the building of wheels for partial ranges. For instance, instead of building for the whole month of 2024-07, instead build for the days that are frequently queried.
// Default across whole data
let builder = IndexBuilder::with_col_and_aggregate("col", AggregateType::Sum);
// Across partial range
let builder = IndexBuilder::with_col_and_aggregate("col", AggregateType::Sum)
.with_time_range("2024-07-01 00:00:00", "2024-07-10 00:00:00");