@@ -378,8 +378,8 @@ macro_rules! handle_error {
378378 } ;
379379}
380380
381- async fn handle_readyset_result < ' a , W > (
382- result : noria_connector:: QueryResult < ' a > ,
381+ async fn handle_readyset_result < W > (
382+ result : noria_connector:: QueryResult < ' _ > ,
383383 writer : QueryResultWriter < ' _ , W > ,
384384) -> io:: Result < ( ) >
385385where
@@ -427,8 +427,8 @@ where
427427 }
428428}
429429
430- async fn handle_upstream_result < ' a , W > (
431- result : upstream:: QueryResult < ' a > ,
430+ async fn handle_upstream_result < W > (
431+ result : upstream:: QueryResult < ' _ > ,
432432 writer : QueryResultWriter < ' _ , W > ,
433433) -> io:: Result < ( ) >
434434where
@@ -478,8 +478,8 @@ where
478478 }
479479}
480480
481- async fn handle_execute_result < ' a , W > (
482- result : Result < QueryResult < ' a , LazyUpstream < MySqlUpstream > > , Error > ,
481+ async fn handle_execute_result < W > (
482+ result : Result < QueryResult < ' _ , LazyUpstream < MySqlUpstream > > , Error > ,
483483 writer : QueryResultWriter < ' _ , W > ,
484484) -> io:: Result < ( ) >
485485where
@@ -504,8 +504,8 @@ where
504504 }
505505}
506506
507- async fn handle_query_result < ' a , W > (
508- result : Result < QueryResult < ' a , LazyUpstream < MySqlUpstream > > , Error > ,
507+ async fn handle_query_result < W > (
508+ result : Result < QueryResult < ' _ , LazyUpstream < MySqlUpstream > > , Error > ,
509509 writer : QueryResultWriter < ' _ , W > ,
510510) -> QueryResultsResponse
511511where
0 commit comments