Fixed test style

This commit is contained in:
Andrew Kane
2022-02-06 20:19:20 -08:00
parent d5da22f24b
commit da88217fd8
3 changed files with 21 additions and 20 deletions

View File

@@ -1,6 +1,6 @@
root = true root = true
[*.{c,h}] [*.{c,h,pl}]
indent_style = tab indent_style = tab
indent_size = tab indent_size = tab
tab_width = 4 tab_width = 4

View File

@@ -34,7 +34,8 @@ sub test_index_replay
my $r2 = rand(); my $r2 = rand();
my $r3 = rand(); my $r3 = rand();
my $queries = qq(SET enable_seqscan=off; my $queries = qq(
SET enable_seqscan = off;
SELECT * FROM tst ORDER BY v <-> '[$r1,$r2,$r3]' LIMIT 10; SELECT * FROM tst ORDER BY v <-> '[$r1,$r2,$r3]' LIMIT 10;
); );