diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2023-06-20 09:50:43 -0400 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2023-06-20 09:50:43 -0400 |
commit | b334612b8aee9f9a34378982d8938b201dfad323 (patch) | |
tree | a47c67522e7886c2aee179cbb260e47218c16d1d /src/bin/scripts | |
parent | 877bf52cffe587d33556e6259f610eb932699706 (diff) | |
download | postgresql-b334612b8aee9f9a34378982d8938b201dfad323.tar.gz postgresql-b334612b8aee9f9a34378982d8938b201dfad323.zip |
Pre-beta2 mechanical code beautification.
Run pgindent and pgperltidy. It seems we're still some ways
away from all committers doing this automatically. Now that
we have a buildfarm animal that will whine about poorly-indented
code, we'll try to keep the tree more tidy.
Discussion: https://postgr.es/m/3156045.1687208823@sss.pgh.pa.us
Diffstat (limited to 'src/bin/scripts')
-rw-r--r-- | src/bin/scripts/t/020_createdb.pl | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/src/bin/scripts/t/020_createdb.pl b/src/bin/scripts/t/020_createdb.pl index 694ec568047..57383561a0c 100644 --- a/src/bin/scripts/t/020_createdb.pl +++ b/src/bin/scripts/t/020_createdb.pl @@ -89,12 +89,14 @@ if ($ENV{with_icu} eq 'yes') $node2->command_ok( [ - 'createdb', '-T', 'template0', '--locale-provider', 'icu', - '--locale', 'en', '--lc-collate', 'C', '--lc-ctype', 'C', - 'foobar57' + 'createdb', '-T', + 'template0', '--locale-provider', + 'icu', '--locale', + 'en', '--lc-collate', + 'C', '--lc-ctype', + 'C', 'foobar57' ], - 'create database with locale as ICU locale' - ); + 'create database with locale as ICU locale'); } else { |