MyScale Vector Search (SQL)
Vector similarity search is expressed in SQL, not a separate REST surface. Tables declare a VECTOR INDEX over an Array(Float32) column (for example TYPE HNSWFLAT with metric_type Cosine, L2, or IP), and queries rank rows with the distance() function ordered by distance. Vector search composes with standard SQL filtering, joins, and full-text search over the same HTTP query endpoint.