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/);