From 53341bb6c7ed198abcde3419cd56e893298fdacd Mon Sep 17 00:00:00 2001 From: Andrew Kane Date: Tue, 30 Jun 2026 13:16:17 -0700 Subject: [PATCH] Simplified test [skip ci] --- test/t/046_hnsw_vacuum_scan.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/t/046_hnsw_vacuum_scan.pl b/test/t/046_hnsw_vacuum_scan.pl index ec0bde2..c9b48cd 100644 --- a/test/t/046_hnsw_vacuum_scan.pl +++ b/test/t/046_hnsw_vacuum_scan.pl @@ -14,7 +14,7 @@ $node->start; # Create table and index $node->safe_psql("postgres", "CREATE EXTENSION vector;"); -$node->safe_psql("postgres", "CREATE TABLE tst (i serial PRIMARY KEY, v vector($dim));"); +$node->safe_psql("postgres", "CREATE TABLE tst (i serial, v vector($dim));"); $node->safe_psql("postgres", "ALTER TABLE tst SET (autovacuum_enabled = false);"); $node->safe_psql("postgres", "INSERT INTO tst (v) SELECT ARRAY[$array_sql] FROM generate_series(1, 1000) i;"