From 4f2c937a1fb43ea6b93c1b58013fe6fbbc41859e Mon Sep 17 00:00:00 2001 From: Andrew Kane Date: Sun, 13 Feb 2022 02:35:28 -0800 Subject: [PATCH] Improved recall test --- test/t/003_recall.pl | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/test/t/003_recall.pl b/test/t/003_recall.pl index 4992b0a..c7ce251 100644 --- a/test/t/003_recall.pl +++ b/test/t/003_recall.pl @@ -2,7 +2,7 @@ use strict; use warnings; use PostgresNode; use TestLib; -use Test::More tests => 2; +use Test::More tests => 3; my $node; my @queries = (); @@ -67,6 +67,5 @@ $node->safe_psql("postgres", "CREATE INDEX ON tst USING ivfflat (v);"); # Test approximate results test_recall(1, 0.8); - -# Test probes +test_recall(10, 0.95); test_recall(100, 1.0);