Fixed segmentation fault with COUNT - fixes #9

This commit is contained in:
Andrew Kane
2021-06-09 03:13:22 -07:00
parent b713cbc3b6
commit 57e6a01214
5 changed files with 28 additions and 0 deletions

View File

@@ -10,5 +10,6 @@ INSERT INTO t (val) VALUES ('[1,2,4]');
SELECT * FROM t ORDER BY val <-> '[3,3,3]';
SELECT * FROM t ORDER BY val <-> (SELECT NULL::vector);
SELECT COUNT(*) FROM t;
DROP TABLE t;