From 71d2908be1857bffeed3748ed3c1792bce16f2f5 Mon Sep 17 00:00:00 2001 From: Andrew Kane Date: Sat, 12 Feb 2022 20:47:25 -0800 Subject: [PATCH] Fixed style [skip ci] --- test/t/002_vacuum.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/t/002_vacuum.pl b/test/t/002_vacuum.pl index e9817b8..f4a2e8d 100644 --- a/test/t/002_vacuum.pl +++ b/test/t/002_vacuum.pl @@ -13,7 +13,7 @@ $node->start; $node->safe_psql("postgres", "CREATE EXTENSION vector;"); $node->safe_psql("postgres", "CREATE TABLE tst (i int4, v vector(3));"); $node->safe_psql("postgres", - "INSERT INTO tst SELECT i%10, ARRAY[i%1000, i%333, i%55] FROM generate_series(1, 100000) i;" + "INSERT INTO tst SELECT i % 10, ARRAY[i % 1000, i % 333, i % 55] FROM generate_series(1, 100000) i;" ); $node->safe_psql("postgres", "CREATE INDEX ON tst USING ivfflat (v);");