pub fn materialize_all_views(
lakehouse: Arc<LakehouseContext>,
views: Arc<Vec<Arc<dyn View>>>,
insert_range: TimeRange,
partition_time_delta: TimeDelta,
) -> impl Future<Output = Result<()>>Expand description
Materializes all views within a given time range.
This function iterates through the provided views, materializing partitions
for each view within the specified insert_range and partition_time_delta.