Skip to content

Commit fdb2699

Browse files
authored
bugfix: remove accidental recursive accepts call (#1856)
1 parent 551c84b commit fdb2699

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

runtimes/core/src/sqldb/val.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -281,7 +281,6 @@ impl<'a> FromSql<'a> for RowValue {
281281
fn accepts(ty: &Type) -> bool {
282282
matches!(*ty, Type::BYTEA | Type::UUID)
283283
|| matches!(ty.kind(), Kind::Array(ty) if <RowValue as FromSql>::accepts(ty))
284-
|| <PValue as FromSql>::accepts(ty)
285284
}
286285
}
287286

0 commit comments

Comments
 (0)