From 7ea1590ea36e302a2cf772b4469e421d1284ded8 Mon Sep 17 00:00:00 2001 From: Andrew Kane Date: Sat, 13 Apr 2024 15:01:23 -0700 Subject: [PATCH] Removed todo [skip ci] --- test/expected/halfvec_input.out | 1 - test/sql/halfvec_input.sql | 1 - 2 files changed, 2 deletions(-) diff --git a/test/expected/halfvec_input.out b/test/expected/halfvec_input.out index 575d6d8..84a8a82 100644 --- a/test/expected/halfvec_input.out +++ b/test/expected/halfvec_input.out @@ -113,7 +113,6 @@ SELECT '[ ]'::halfvec; ERROR: halfvec must have at least 1 dimension LINE 1: SELECT '[ ]'::halfvec; ^ --- TODO fix error message SELECT '[,]'::halfvec; ERROR: halfvec must have at least 1 dimension LINE 1: SELECT '[,]'::halfvec; diff --git a/test/sql/halfvec_input.sql b/test/sql/halfvec_input.sql index 2018b1d..a11b59d 100644 --- a/test/sql/halfvec_input.sql +++ b/test/sql/halfvec_input.sql @@ -21,7 +21,6 @@ SELECT '[ '::halfvec; SELECT '[,'::halfvec; SELECT '[]'::halfvec; SELECT '[ ]'::halfvec; --- TODO fix error message SELECT '[,]'::halfvec; SELECT '[1,]'::halfvec; SELECT '[1a]'::halfvec;