Added filtering for text columns

This commit is contained in:
Andrew Kane
2024-02-13 13:14:13 -08:00
parent f712847781
commit dbc56491f4
3 changed files with 14 additions and 6 deletions

View File

@@ -296,3 +296,7 @@ CREATE OPERATOR CLASS vector_cosine_ops
CREATE OPERATOR CLASS vector_integer_ops
DEFAULT FOR TYPE integer USING hnsw AS
OPERATOR 2 = (integer, integer);
CREATE OPERATOR CLASS vector_text_ops
DEFAULT FOR TYPE text USING hnsw AS
OPERATOR 2 = (text, text);