Skip to content

Commit

Permalink
fix: return Oid::INVALID to skip binary-coercible test (tensorchord#55)
Browse files Browse the repository at this point in the history
Signed-off-by: usamoi <usamoi@outlook.com>
  • Loading branch information
usamoi authored Nov 8, 2024
1 parent 82a3d3f commit ee8cbf5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/datatype/memory_pgvector_vector.rs
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,7 @@ impl IntoDatum for PgvectorVectorOutput {
}

fn type_oid() -> Oid {
panic!("calling `type_oid` is never expected")
Oid::INVALID
}

fn is_compatible_with(_: Oid) -> bool {
Expand Down

0 comments on commit ee8cbf5

Please sign in to comment.