From 98deaa740760e9d2bd508649d3131c0f04cace96 Mon Sep 17 00:00:00 2001 From: Andrew Kane Date: Sun, 13 Oct 2024 18:41:57 -0700 Subject: [PATCH] Added intvec to inputs test [skip ci] --- test/t/037_inputs.pl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/t/037_inputs.pl b/test/t/037_inputs.pl index bf4cc20..192cc21 100644 --- a/test/t/037_inputs.pl +++ b/test/t/037_inputs.pl @@ -12,8 +12,8 @@ $node->start; # Create extension $node->safe_psql("postgres", "CREATE EXTENSION vector;"); -my @types = ("vector", "halfvec", "sparsevec"); -my @inputs = ("[1.23,4.56,7.89]", "[1.23,4.56,7.89]", "{1:1.23,2:4.56,3:7.89}/3"); +my @types = ("vector", "halfvec", "intvec", "sparsevec"); +my @inputs = ("[1.23,4.56,7.89]", "[1.23,4.56,7.89]", "[1,2,3]", "{1:1.23,2:4.56,3:7.89}/3"); my @subs = (" ", " ", ",", ":", "-", "1", "9", "\0", "2147483648", "-2147483649"); for my $i (0 .. $#types)