From ecd0738728792f1e09bd3e98f588322d84445efe Mon Sep 17 00:00:00 2001 From: Andrew Kane Date: Tue, 24 Sep 2024 23:13:30 -0700 Subject: [PATCH] Improved test [skip ci] --- test/t/017_hnsw_filtering.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/t/017_hnsw_filtering.pl b/test/t/017_hnsw_filtering.pl index 3d4feff..4ec8721 100644 --- a/test/t/017_hnsw_filtering.pl +++ b/test/t/017_hnsw_filtering.pl @@ -102,7 +102,7 @@ like($explain, qr/Seq Scan/); # Test join $explain = $node->safe_psql("postgres", qq( - EXPLAIN ANALYZE SELECT cat.t FROM cat INNER JOIN tst ON cat.i = tst.i ORDER BY v <-> '$query' LIMIT $limit; + EXPLAIN ANALYZE SELECT cat.t FROM cat INNER JOIN tst ON cat.i = tst.c ORDER BY v <-> '$query' LIMIT $limit; )); like($explain, qr/Index Scan using idx/);