aboutsummaryrefslogtreecommitdiff
path: root/src/bin/pg_rewind/t/001_basic.pl
diff options
context:
space:
mode:
authorPeter Eisentraut <peter_e@gmx.net>2018-04-26 11:52:52 -0400
committerPeter Eisentraut <peter_e@gmx.net>2018-04-27 11:37:43 -0400
commitd4f16d50713077e69f8833df6b99d1eab0be1c33 (patch)
treef9acf7a056f6db6ba9b4e0059710276bb40d37aa /src/bin/pg_rewind/t/001_basic.pl
parenta2ada08d4c0afa2d1f678ba7fb03ccc065f3a57b (diff)
downloadpostgresql-d4f16d50713077e69f8833df6b99d1eab0be1c33.tar.gz
postgresql-d4f16d50713077e69f8833df6b99d1eab0be1c33.zip
perltidy: Add option --nooutdent-long-quotes
Diffstat (limited to 'src/bin/pg_rewind/t/001_basic.pl')
-rw-r--r--src/bin/pg_rewind/t/001_basic.pl4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/bin/pg_rewind/t/001_basic.pl b/src/bin/pg_rewind/t/001_basic.pl
index 9a0ce09a779..87bb71e8ed3 100644
--- a/src/bin/pg_rewind/t/001_basic.pl
+++ b/src/bin/pg_rewind/t/001_basic.pl
@@ -35,7 +35,7 @@ sub run_test
master_psql(
"INSERT INTO trunc_tbl values ('in master, before promotion')");
master_psql(
-"INSERT INTO tail_tbl SELECT g, 'in master, before promotion: ' || g FROM generate_series(1, 10000) g"
+ "INSERT INTO tail_tbl SELECT g, 'in master, before promotion: ' || g FROM generate_series(1, 10000) g"
);
master_psql('CHECKPOINT');
@@ -54,7 +54,7 @@ sub run_test
# Insert enough rows to trunc_tbl to extend the file. pg_rewind should
# truncate it back to the old size.
master_psql(
-"INSERT INTO trunc_tbl SELECT 'in master, after promotion: ' || g FROM generate_series(1, 10000) g"
+ "INSERT INTO trunc_tbl SELECT 'in master, after promotion: ' || g FROM generate_series(1, 10000) g"
);
# Truncate tail_tbl. pg_rewind should copy back the truncated part