diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2022-06-30 11:03:03 -0400 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2022-06-30 11:03:03 -0400 |
commit | 82d0ffae3219e4bc153a1306ce23013d168e04a2 (patch) | |
tree | 09c88e2f26187826ec9e5512593d5412703908aa /src/bin/psql/t/001_basic.pl | |
parent | f5135d2aba87f59944bdab4f54129fc43a3f03d0 (diff) |
pgindent run prior to branching v15.
pgperltidy and reformat-dat-files too. Not many changes.
Diffstat (limited to 'src/bin/psql/t/001_basic.pl')
-rw-r--r-- | src/bin/psql/t/001_basic.pl | 13 |
1 files changed, 10 insertions, 3 deletions
diff --git a/src/bin/psql/t/001_basic.pl b/src/bin/psql/t/001_basic.pl index 57486ceffdb..f4478457175 100644 --- a/src/bin/psql/t/001_basic.pl +++ b/src/bin/psql/t/001_basic.pl @@ -90,10 +90,17 @@ SELECT 1', # test \timing with query that fails { - my ($ret, $stdout, $stderr) = $node->psql('postgres', "\\timing on\nSELECT error"); + my ($ret, $stdout, $stderr) = + $node->psql('postgres', "\\timing on\nSELECT error"); isnt($ret, 0, '\timing with query error: query failed'); - like($stdout, qr/^Time: \d+[.,]\d\d\d ms/m, '\timing with query error: timing output appears'); - unlike($stdout, qr/^Time: 0[.,]000 ms/m, '\timing with query error: timing was updated'); + like( + $stdout, + qr/^Time: \d+[.,]\d\d\d ms/m, + '\timing with query error: timing output appears'); + unlike( + $stdout, + qr/^Time: 0[.,]000 ms/m, + '\timing with query error: timing was updated'); } # test that ENCODING variable is set and that it is updated when |