Improved input tests [skip ci]

This commit is contained in:
Andrew Kane
2024-04-13 10:56:34 -07:00
parent aed463dbad
commit 9957ba6817
4 changed files with 14 additions and 0 deletions

View File

@@ -121,6 +121,11 @@ ERROR: vector must have at least 1 dimension
LINE 1: SELECT '[]'::vector;
^
-- TODO fix error message
SELECT '[ ]'::vector;
ERROR: invalid input syntax for type vector: "[ ]"
LINE 1: SELECT '[ ]'::vector;
^
-- TODO fix error message
SELECT '[,]'::vector;
ERROR: vector must have at least 1 dimension
LINE 1: SELECT '[,]'::vector;