File tree Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -26,6 +26,7 @@ pub struct DuckDBBackend {
2626 query_parser : Arc < NoopQueryParser > ,
2727}
2828
29+ #[ derive( Debug ) ]
2930struct DummyAuthSource ;
3031
3132#[ async_trait]
@@ -44,7 +45,7 @@ impl AuthSource for DummyAuthSource {
4445
4546#[ async_trait]
4647impl SimpleQueryHandler for DuckDBBackend {
47- async fn do_query < ' a , C > ( & self , _client : & mut C , query : & str ) -> PgWireResult < Vec < Response < ' a > > >
48+ async fn do_query < C > ( & self , _client : & mut C , query : & str ) -> PgWireResult < Vec < Response > >
4849 where
4950 C : ClientInfo + Unpin + Send + Sync ,
5051 {
@@ -152,12 +153,12 @@ impl ExtendedQueryHandler for DuckDBBackend {
152153 self . query_parser . clone ( )
153154 }
154155
155- async fn do_query < ' a , C > (
156+ async fn do_query < C > (
156157 & self ,
157158 _client : & mut C ,
158159 portal : & Portal < Self :: Statement > ,
159160 _max_rows : usize ,
160- ) -> PgWireResult < Response < ' a > >
161+ ) -> PgWireResult < Response >
161162 where
162163 C : ClientInfo + Unpin + Send + Sync ,
163164 {
You can’t perform that action at this time.
0 commit comments