We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 11f4ee0 commit 681b931Copy full SHA for 681b931
1 file changed
libsql/src/hrana/mod.rs
@@ -326,7 +326,7 @@ impl Row {
326
327
impl RowInner for Row {
328
fn column_value(&self, idx: i32) -> crate::Result<crate::Value> {
329
- let v = self.inner.get(idx as usize).cloned().ok_or_else(|| crate::Error::InvalidColumnIndex(idx))?;
+ let v = self.inner.get(idx as usize).cloned().ok_or_else(|| crate::Error::InvalidColumnIndex)?;
330
Ok(into_value2(v))
331
}
332
0 commit comments