diff --git a/sqlx-core/src/row.rs b/sqlx-core/src/row.rs index 4c96ced048..fe0b75ebb0 100644 --- a/sqlx-core/src/row.rs +++ b/sqlx-core/src/row.rs @@ -64,6 +64,7 @@ pub trait Row: Unpin + Send + Sync + 'static { /// See [`try_get`](Self::try_get) for a non-panicking version. /// #[inline] + #[track_caller] fn get<'r, T, I>(&'r self, index: I) -> T where I: ColumnIndex,