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<'_> {
144
144
/// sure that current statement has already been stepped once before
145
145
/// calling this method.
146
146
#[ cfg( feature = "column_decltype" ) ]
147
- pub fn columns ( & self ) -> Vec < Column > {
147
+ pub fn columns ( & self ) -> Vec < Column < ' _ > > {
148
148
let n = self . column_count ( ) ;
149
149
let mut cols = Vec :: with_capacity ( n) ;
150
150
for i in 0 ..n {
Original file line number Diff line number Diff line change @@ -343,7 +343,7 @@ impl<'stmt> Row<'stmt> {
343
343
Self :: value_ref_internal ( row, col, column)
344
344
}
345
345
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 < ' _ > {
347
347
if column. is_null ( row) {
348
348
return ValueRef :: Null ;
349
349
}
You can’t perform that action at this time.
0 commit comments