Added support for bigint attributes [skip ci]

This commit is contained in:
Andrew Kane
2023-11-15 15:37:27 -08:00
parent 08bd246529
commit 8fcf77f89a
4 changed files with 31 additions and 1 deletions

View File

@@ -56,7 +56,7 @@ $node->start;
# Create table
$node->safe_psql("postgres", "CREATE EXTENSION vector;");
$node->safe_psql("postgres", "CREATE TABLE tst (i int4, v vector($dim), c int4);");
$node->safe_psql("postgres", "CREATE TABLE tst (i int4, v vector($dim), c int8);");
$node->safe_psql("postgres",
"INSERT INTO tst SELECT i, ARRAY[$array_sql], i % $nc FROM generate_series(1, 20000) i;"
);