Added support for ordering halfvec and sparsevec columns

This commit is contained in:
Andrew Kane
2024-04-14 13:58:54 -07:00
parent a5d51ed539
commit 0507fc9369
8 changed files with 102 additions and 3 deletions

View File

@@ -0,0 +1,10 @@
SET enable_seqscan = off;
CREATE TABLE t (val halfvec(3));
INSERT INTO t (val) VALUES ('[0,0,0]'), ('[1,2,3]'), ('[1,1,1]'), (NULL);
CREATE INDEX ON t (val);
SELECT * FROM t WHERE val = '[1,2,3]';
SELECT * FROM t ORDER BY val;
DROP TABLE t;