Added support for uuid

This commit is contained in:
Andrew Kane
2024-02-14 16:16:26 -08:00
parent 6fccacc66a
commit f076ec2954
3 changed files with 44 additions and 15 deletions

View File

@@ -316,3 +316,11 @@ CREATE OPERATOR CLASS vector_text_ops
OPERATOR 4 = ,
OPERATOR 5 >= ,
OPERATOR 6 > ;
CREATE OPERATOR CLASS vector_uuid_ops
DEFAULT FOR TYPE uuid USING hnsw AS
OPERATOR 2 < ,
OPERATOR 3 <= ,
OPERATOR 4 = ,
OPERATOR 5 >= ,
OPERATOR 6 > ;