From 885dd5b6659950cd83bd14b907603a757e35ce93 Mon Sep 17 00:00:00 2001 From: Andrew Kane Date: Sat, 20 Jan 2024 21:10:24 -0800 Subject: [PATCH] Fixed test warning [skip ci] --- test/t/018_hnsw_filtering.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/t/018_hnsw_filtering.pl b/test/t/018_hnsw_filtering.pl index fd61ff4..074aba5 100644 --- a/test/t/018_hnsw_filtering.pl +++ b/test/t/018_hnsw_filtering.pl @@ -40,7 +40,7 @@ my $explain = $node->safe_psql("postgres", qq( like($explain, qr/Index Scan using idx/); # Test attribute filtering with few rows removed -my $explain = $node->safe_psql("postgres", qq( +$explain = $node->safe_psql("postgres", qq( EXPLAIN ANALYZE SELECT i FROM tst WHERE c != $c ORDER BY v <-> '$query' LIMIT $limit; )); like($explain, qr/Index Scan using idx/);