@@ -412,23 +412,23 @@ impl SiteCtxt {
412
412
query : Query ,
413
413
artifact_ids : Arc < Vec < ArtifactId > > ,
414
414
) -> Result < Vec < SeriesResponse < StatisticSeries > > , String > {
415
- StatisticSeries :: expand_query ( artifact_ids. clone ( ) , self , query. clone ( ) ) . await
415
+ StatisticSeries :: execute_query ( artifact_ids. clone ( ) , self , query. clone ( ) ) . await
416
416
}
417
417
418
418
pub async fn self_profile (
419
419
& self ,
420
420
query : Query ,
421
421
artifact_ids : Arc < Vec < ArtifactId > > ,
422
422
) -> Result < Vec < SeriesResponse < SelfProfile > > , String > {
423
- SelfProfile :: expand_query ( artifact_ids, self , query. clone ( ) ) . await
423
+ SelfProfile :: execute_query ( artifact_ids, self , query. clone ( ) ) . await
424
424
}
425
425
426
426
pub async fn self_profile_query_time (
427
427
& self ,
428
428
query : Query ,
429
429
artifact_ids : Arc < Vec < ArtifactId > > ,
430
430
) -> Result < Vec < SeriesResponse < SelfProfileQueryTime > > , String > {
431
- SelfProfileQueryTime :: expand_query ( artifact_ids, self , query. clone ( ) ) . await
431
+ SelfProfileQueryTime :: execute_query ( artifact_ids, self , query. clone ( ) ) . await
432
432
}
433
433
}
434
434
@@ -438,7 +438,7 @@ pub struct StatisticSeries {
438
438
}
439
439
440
440
impl StatisticSeries {
441
- async fn expand_query (
441
+ async fn execute_query (
442
442
artifact_ids : Arc < Vec < ArtifactId > > ,
443
443
ctxt : & SiteCtxt ,
444
444
mut query : Query ,
@@ -600,7 +600,7 @@ impl SelfProfile {
600
600
}
601
601
}
602
602
603
- async fn expand_query (
603
+ async fn execute_query (
604
604
artifact_ids : Arc < Vec < ArtifactId > > ,
605
605
ctxt : & SiteCtxt ,
606
606
mut query : Query ,
@@ -686,7 +686,7 @@ impl SelfProfileQueryTime {
686
686
}
687
687
}
688
688
689
- async fn expand_query (
689
+ async fn execute_query (
690
690
artifact_ids : Arc < Vec < ArtifactId > > ,
691
691
ctxt : & SiteCtxt ,
692
692
mut query : Query ,
0 commit comments