Replies: 3 comments 2 replies
-
Hey @alexpusch, is it possible to define it as |
Beta Was this translation helpful? Give feedback.
-
@billy1624 trying to just use it with |
Beta Was this translation helpful? Give feedback.
-
@billy1624 I've noticed that some support was added sea-query in SeaQL/sea-query#774 Are there plans to improve vector column support? #[derive(Clone, Debug, PartialEq, DeriveEntityModel, Eq)]
#[sea_orm(table_name = "example")]
pub struct Model {
#[sea_orm(primary_key)]
pub id: i32,
#[sea_orm(column_type = "custom(\"vector\")")]
pub vector: String,
} |
Beta Was this translation helpful? Give feedback.
-
Hi, pg_vector postgres extension offers sqlx support.
When I try to create a column of the
pgvector::Vector
type the following error occursIs it possible to support types with sqlX support?
Is it possible to add support for external types, or are we limited to the existing variants in the Value enum?
Beta Was this translation helpful? Give feedback.
All reactions