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

@@ -19,4 +19,10 @@ SELECT * FROM t ORDER BY val <-> (SELECT NULL::vector);
-----
(0 rows)
SELECT COUNT(*) FROM t;
count
-------
5
(1 row)
DROP TABLE t;