Improved cost estimation [skip ci]

This commit is contained in:
Andrew Kane
2024-09-28 16:04:07 -07:00
parent ba8e29600b
commit e1c2d03dba
3 changed files with 26 additions and 49 deletions

View File

@@ -17,7 +17,7 @@ $node->safe_psql("postgres", "CREATE EXTENSION vector;");
for my $dim (@dims)
{
my $array_sql = join(",", ('random()') x $dim);
my $n = $dim == 384 ? 2000 : 1000;
my $n = 2000;
# Create table and index
$node->safe_psql("postgres", "CREATE TABLE tst (i int4, v vector($dim));");