|
| 1 | +use re_protos::manifest_registry::v1alpha1::ext::{Query, QueryLatestAt, QueryRange}; |
1 | 2 | use tokio_stream::{Stream, StreamExt as _};
|
2 | 3 |
|
3 | 4 | use re_auth::client::AuthDecorator;
|
@@ -456,7 +457,26 @@ async fn stream_partition_from_server(
|
456 | 457 | fuzzy_descriptors: vec![],
|
457 | 458 | exclude_static_data: true,
|
458 | 459 | exclude_temporal_data: false,
|
459 |
| - query: None, |
| 460 | + query: time_range.clone().map(|time_range| { |
| 461 | + Query { |
| 462 | + range: Some(QueryRange { |
| 463 | + index: time_range.timeline.name().to_string(), |
| 464 | + index_range: time_range.clone().into(), |
| 465 | + }), |
| 466 | + latest_at: Some(QueryLatestAt { |
| 467 | + index: Some(time_range.timeline.name().to_string()), |
| 468 | + at: time_range.min.into(), |
| 469 | + }), |
| 470 | + columns_always_include_everything: false, |
| 471 | + columns_always_include_chunk_ids: false, |
| 472 | + columns_always_include_byte_offsets: false, |
| 473 | + columns_always_include_entity_paths: false, |
| 474 | + columns_always_include_static_indexes: false, |
| 475 | + columns_always_include_global_indexes: false, |
| 476 | + columns_always_include_component_indexes: false, |
| 477 | + } |
| 478 | + .into() |
| 479 | + }), |
460 | 480 | })
|
461 | 481 | .await?
|
462 | 482 | .into_inner()
|
|
0 commit comments