File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -144,7 +144,7 @@ impl Statement<'_> {
144144 /// sure that current statement has already been stepped once before
145145 /// calling this method.
146146 #[ cfg( feature = "column_decltype" ) ]
147- pub fn columns ( & self ) -> Vec < Column > {
147+ pub fn columns ( & self ) -> Vec < Column < ' _ > > {
148148 let n = self . column_count ( ) ;
149149 let mut cols = Vec :: with_capacity ( n) ;
150150 for i in 0 ..n {
Original file line number Diff line number Diff line change @@ -343,7 +343,7 @@ impl<'stmt> Row<'stmt> {
343343 Self :: value_ref_internal ( row, col, column)
344344 }
345345
346- pub ( crate ) fn value_ref_internal ( row : usize , col : usize , column : & ArrayRef ) -> ValueRef {
346+ pub ( crate ) fn value_ref_internal ( row : usize , col : usize , column : & ArrayRef ) -> ValueRef < ' _ > {
347347 if column. is_null ( row) {
348348 return ValueRef :: Null ;
349349 }
You can’t perform that action at this time.
0 commit comments