diff options
| author | Tom Lane | 2021-05-12 17:14:10 +0000 |
|---|---|---|
| committer | Tom Lane | 2021-05-12 17:14:10 +0000 |
| commit | def5b065ff22a16a80084587613599fe15627213 (patch) | |
| tree | 13f424449b7fb90c85659071b6adf4e27ae6d272 /src/test/authentication | |
| parent | e6ccd1ce1644d1b40b7981f8bc172394de524f99 (diff) | |
Initial pgindent and pgperltidy run for v14.
Also "make reformat-dat-files".
The only change worthy of note is that pgindent messed up the formatting
of launcher.c's struct LogicalRepWorkerId, which led me to notice that
that struct wasn't used at all anymore, so I just took it out.
Diffstat (limited to 'src/test/authentication')
| -rw-r--r-- | src/test/authentication/t/001_password.pl | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/src/test/authentication/t/001_password.pl b/src/test/authentication/t/001_password.pl index 17d686e702e..427a3601987 100644 --- a/src/test/authentication/t/001_password.pl +++ b/src/test/authentication/t/001_password.pl @@ -141,7 +141,8 @@ delete $ENV{"PGCHANNELBINDING"}; $ENV{"PGPASSFILE"} = $pgpassfile; unlink($pgpassfile); -append_to_file($pgpassfile, qq! +append_to_file( + $pgpassfile, qq! # This very long comment is just here to exercise handling of long lines in the file. This very long comment is just here to exercise handling of long lines in the file. This very long comment is just here to exercise handling of long lines in the file. This very long comment is just here to exercise handling of long lines in the file. This very long comment is just here to exercise handling of long lines in the file. *:*:postgres:scram_role:pass:this is not part of the password. !); @@ -151,8 +152,9 @@ reset_pg_hba($node, 'password'); test_role($node, 'scram_role', 'password from pgpass', 0); test_role($node, 'md5_role', 'password from pgpass', 2); -append_to_file($pgpassfile, qq! +append_to_file( + $pgpassfile, qq! *:*:*:md5_role:p\\ass !); -test_role($node, 'md5_role', 'password from pgpass', 0); +test_role($node, 'md5_role', 'password from pgpass', 0); |
