From 72eee91d008b068a271772ee402cfd5938152988 Mon Sep 17 00:00:00 2001 From: Andrew Kane Date: Sat, 13 Apr 2024 14:55:14 -0700 Subject: [PATCH] Fixed test --- test/expected/vector_input.out | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/test/expected/vector_input.out b/test/expected/vector_input.out index 81998fe..74380a5 100644 --- a/test/expected/vector_input.out +++ b/test/expected/vector_input.out @@ -86,7 +86,6 @@ SELECT '[1,2,3'::vector; ERROR: invalid input syntax for type vector: "[1,2,3" LINE 1: SELECT '[1,2,3'::vector; ^ -DETAIL: Unexpected end of input. SELECT '[1,2,3]9'::vector; ERROR: invalid input syntax for type vector: "[1,2,3]9" LINE 1: SELECT '[1,2,3]9'::vector; @@ -106,17 +105,14 @@ SELECT '['::vector; ERROR: invalid input syntax for type vector: "[" LINE 1: SELECT '['::vector; ^ -DETAIL: Unexpected end of input. SELECT '[ '::vector; ERROR: invalid input syntax for type vector: "[ " LINE 1: SELECT '[ '::vector; ^ -DETAIL: Unexpected end of input. SELECT '[,'::vector; ERROR: invalid input syntax for type vector: "[," LINE 1: SELECT '[,'::vector; ^ -DETAIL: Unexpected end of input. SELECT '[]'::vector; ERROR: vector must have at least 1 dimension LINE 1: SELECT '[]'::vector; @@ -127,7 +123,7 @@ LINE 1: SELECT '[ ]'::vector; ^ -- TODO fix error message SELECT '[,]'::vector; -ERROR: vector must have at least 1 dimension +ERROR: invalid input syntax for type vector: "[,]" LINE 1: SELECT '[,]'::vector; ^ SELECT '[1,]'::vector;