diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2019-05-22 13:36:19 -0400 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2019-05-22 13:36:19 -0400 |
commit | db6e2b4c52ade524f3db419d75084728e96e1f9c (patch) | |
tree | 2babbcb444df4f2e2725010b9238334c9d27a4c0 /src/test/modules/commit_ts/t | |
parent | 8255c7a5eeba8f1a38b7a431c04909bde4f5e67d (diff) | |
download | postgresql-db6e2b4c52ade524f3db419d75084728e96e1f9c.tar.gz postgresql-db6e2b4c52ade524f3db419d75084728e96e1f9c.zip |
Initial pgperltidy run for v12.
Make all the perl code look nice, too (for some value of "nice").
Diffstat (limited to 'src/test/modules/commit_ts/t')
-rw-r--r-- | src/test/modules/commit_ts/t/004_restart.pl | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/test/modules/commit_ts/t/004_restart.pl b/src/test/modules/commit_ts/t/004_restart.pl index 241b0b08dcf..bd4b9433056 100644 --- a/src/test/modules/commit_ts/t/004_restart.pl +++ b/src/test/modules/commit_ts/t/004_restart.pl @@ -85,8 +85,9 @@ $node_master->restart; # Move commit timestamps across page boundaries. Things should still # be able to work across restarts with those transactions committed while # track_commit_timestamp is disabled. -$node_master->safe_psql('postgres', -qq(CREATE PROCEDURE consume_xid(cnt int) +$node_master->safe_psql( + 'postgres', + qq(CREATE PROCEDURE consume_xid(cnt int) AS \$\$ DECLARE i int; |