Improved test [skip ci]

This commit is contained in:
Andrew Kane
2024-02-13 21:51:35 -08:00
parent eb695a0781
commit 40c49a29ef

View File

@@ -95,12 +95,15 @@ for my $i (0 .. $#queries)
# Test recall # Test recall
test_recall(0.99, '<->'); test_recall(0.99, '<->');
# Test vacuum # Test no conditions
$node->safe_psql("postgres", "DELETE FROM tst WHERE c > '5';"); my $explain = $node->safe_psql("postgres", qq(
$node->safe_psql("postgres", "VACUUM tst;"); SET enable_seqscan = off;
EXPLAIN ANALYZE SELECT i FROM tst ORDER BY v <-> '$queries[0]' LIMIT $limit;
));
like($explain, qr/Index Scan/);
# Test multiple conditions # Test multiple conditions
my $explain = $node->safe_psql("postgres", qq( $explain = $node->safe_psql("postgres", qq(
SET enable_seqscan = off; SET enable_seqscan = off;
EXPLAIN ANALYZE SELECT i FROM tst WHERE c = '$cs[0]' AND c2 = '$cs[0]' ORDER BY v <-> '$queries[0]' LIMIT $limit; EXPLAIN ANALYZE SELECT i FROM tst WHERE c = '$cs[0]' AND c2 = '$cs[0]' ORDER BY v <-> '$queries[0]' LIMIT $limit;
)); ));
@@ -113,6 +116,10 @@ $explain = $node->safe_psql("postgres", qq(
)); ));
like($explain, qr/Seq Scan/); like($explain, qr/Seq Scan/);
# Test vacuum
$node->safe_psql("postgres", "DELETE FROM tst WHERE c > '5';");
$node->safe_psql("postgres", "VACUUM tst;");
# Test columns # Test columns
my ($ret, $stdout, $stderr) = $node->psql("postgres", "CREATE INDEX ON tst USING hnsw (c);"); my ($ret, $stdout, $stderr) = $node->psql("postgres", "CREATE INDEX ON tst USING hnsw (c);");
like($stderr, qr/first column must be a vector/); like($stderr, qr/first column must be a vector/);