You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Construct Postgres query with vector extension #774
Added postgres-vector feature flag
Added Value::Vector, ColumnType::Vector, ColumnDef::vector(), PgBinOper::EuclideanDistance, PgBinOper::NegativeInnerProduct and PgBinOper::CosineDistance
assert_eq!(Query::select().columns([Char::Character]).from(Char::Table).and_where(Expr::col(Char::Character).eq(Expr::val(pgvector::Vector::from(vec![1.0,2.0])))).to_string(PostgresQueryBuilder),r#"SELECT "character" FROM "character" WHERE "character" = '[1,2]'"#);
Added ExprTrait to unify Expr and SimpleExpr methods #791
Support partial index CREATE INDEX .. WHERE ..#478