mirror of
https://github.com/postgres/postgres.git
synced 2025-04-21 12:05:57 +03:00
perltidy: Add option --nooutdent-long-quotes
This commit is contained in:
parent
a2ada08d4c
commit
d4f16d5071
@ -420,13 +420,15 @@ rmtree("$tempdir/backupxs_slot");
|
|||||||
|
|
||||||
is( $node->safe_psql(
|
is( $node->safe_psql(
|
||||||
'postgres',
|
'postgres',
|
||||||
q{SELECT slot_name FROM pg_replication_slots WHERE slot_name = 'slot0'}),
|
q{SELECT slot_name FROM pg_replication_slots WHERE slot_name = 'slot0'}
|
||||||
|
),
|
||||||
'slot0',
|
'slot0',
|
||||||
'replication slot was created');
|
'replication slot was created');
|
||||||
isnt(
|
isnt(
|
||||||
$node->safe_psql(
|
$node->safe_psql(
|
||||||
'postgres',
|
'postgres',
|
||||||
q{SELECT restart_lsn FROM pg_replication_slots WHERE slot_name = 'slot0'}),
|
q{SELECT restart_lsn FROM pg_replication_slots WHERE slot_name = 'slot0'}
|
||||||
|
),
|
||||||
'',
|
'',
|
||||||
'restart LSN of new slot is not null');
|
'restart LSN of new slot is not null');
|
||||||
|
|
||||||
|
@ -33,8 +33,7 @@ close $fh;
|
|||||||
command_checks_all(
|
command_checks_all(
|
||||||
[ 'pg_controldata', $node->data_dir ],
|
[ 'pg_controldata', $node->data_dir ],
|
||||||
0,
|
0,
|
||||||
[
|
[ qr/WARNING: Calculated CRC checksum does not match value stored in file/,
|
||||||
qr/WARNING: Calculated CRC checksum does not match value stored in file/,
|
|
||||||
qr/WARNING: invalid WAL segment size/ ],
|
qr/WARNING: invalid WAL segment size/ ],
|
||||||
[qr/^$/],
|
[qr/^$/],
|
||||||
'pg_controldata with corrupted pg_control');
|
'pg_controldata with corrupted pg_control');
|
||||||
|
@ -68,7 +68,8 @@ qr/\Qpg_dump: options -c\/--clean and -a\/--data-only cannot be used together\E/
|
|||||||
command_fails_like(
|
command_fails_like(
|
||||||
[ 'pg_restore', '-c', '-a' ],
|
[ 'pg_restore', '-c', '-a' ],
|
||||||
qr/\Qpg_restore: options -c\/--clean and -a\/--data-only cannot be used together\E/,
|
qr/\Qpg_restore: options -c\/--clean and -a\/--data-only cannot be used together\E/,
|
||||||
'pg_restore: options -c/--clean and -a/--data-only cannot be used together');
|
'pg_restore: options -c/--clean and -a/--data-only cannot be used together'
|
||||||
|
);
|
||||||
|
|
||||||
command_fails_like(
|
command_fails_like(
|
||||||
[ 'pg_dump', '--inserts', '-o' ],
|
[ 'pg_dump', '--inserts', '-o' ],
|
||||||
|
@ -31,8 +31,7 @@ command_checks_all(
|
|||||||
[ 'pg_resetwal', '-n', $node->data_dir ],
|
[ 'pg_resetwal', '-n', $node->data_dir ],
|
||||||
0,
|
0,
|
||||||
[qr/pg_control version number/],
|
[qr/pg_control version number/],
|
||||||
[
|
[ qr/pg_resetwal: pg_control exists but is broken or wrong version; ignoring it/
|
||||||
qr/pg_resetwal: pg_control exists but is broken or wrong version; ignoring it/
|
|
||||||
],
|
],
|
||||||
'processes corrupted pg_control all zeroes');
|
'processes corrupted pg_control all zeroes');
|
||||||
|
|
||||||
@ -47,7 +46,6 @@ command_checks_all(
|
|||||||
[ 'pg_resetwal', '-n', $node->data_dir ],
|
[ 'pg_resetwal', '-n', $node->data_dir ],
|
||||||
0,
|
0,
|
||||||
[qr/pg_control version number/],
|
[qr/pg_control version number/],
|
||||||
[
|
[ qr/\Qpg_resetwal: pg_control specifies invalid WAL segment size (0 bytes); proceed with caution\E/
|
||||||
qr/\Qpg_resetwal: pg_control specifies invalid WAL segment size (0 bytes); proceed with caution\E/
|
|
||||||
],
|
],
|
||||||
'processes zero WAL segment size');
|
'processes zero WAL segment size');
|
||||||
|
@ -75,7 +75,8 @@ sub run_test
|
|||||||
"$test_master_datadir/tst_standby_dir/standby_file1",
|
"$test_master_datadir/tst_standby_dir/standby_file1",
|
||||||
"$test_master_datadir/tst_standby_dir/standby_file2",
|
"$test_master_datadir/tst_standby_dir/standby_file2",
|
||||||
"$test_master_datadir/tst_standby_dir/standby_subdir",
|
"$test_master_datadir/tst_standby_dir/standby_subdir",
|
||||||
"$test_master_datadir/tst_standby_dir/standby_subdir/standby_file3" ],
|
"$test_master_datadir/tst_standby_dir/standby_subdir/standby_file3"
|
||||||
|
],
|
||||||
"file lists match");
|
"file lists match");
|
||||||
|
|
||||||
RewindTest::clean_rewind_test();
|
RewindTest::clean_rewind_test();
|
||||||
|
@ -114,8 +114,7 @@ my @options = (
|
|||||||
[ qr{unrecognized initialization step}, qr{allowed steps are} ] ],
|
[ qr{unrecognized initialization step}, qr{allowed steps are} ] ],
|
||||||
[ 'bad random seed',
|
[ 'bad random seed',
|
||||||
'--random-seed=one',
|
'--random-seed=one',
|
||||||
[
|
[ qr{unrecognized random seed option "one": expecting an unsigned integer, "time" or "rand"},
|
||||||
qr{unrecognized random seed option "one": expecting an unsigned integer, "time" or "rand"},
|
|
||||||
qr{error while setting random seed from --random-seed option} ] ],
|
qr{error while setting random seed from --random-seed option} ] ],
|
||||||
|
|
||||||
# loging sub-options
|
# loging sub-options
|
||||||
|
@ -60,7 +60,8 @@ $node->safe_psql('postgres',
|
|||||||
"SET password_encryption='scram-sha-256'; CREATE ROLE scram_role LOGIN PASSWORD 'pass';"
|
"SET password_encryption='scram-sha-256'; CREATE ROLE scram_role LOGIN PASSWORD 'pass';"
|
||||||
);
|
);
|
||||||
$node->safe_psql('postgres',
|
$node->safe_psql('postgres',
|
||||||
"SET password_encryption='md5'; CREATE ROLE md5_role LOGIN PASSWORD 'pass';");
|
"SET password_encryption='md5'; CREATE ROLE md5_role LOGIN PASSWORD 'pass';"
|
||||||
|
);
|
||||||
$ENV{"PGPASSWORD"} = 'pass';
|
$ENV{"PGPASSWORD"} = 'pass';
|
||||||
|
|
||||||
# For "trust" method, all users should be able to connect.
|
# For "trust" method, all users should be able to connect.
|
||||||
|
@ -24,7 +24,8 @@ $node_master->safe_psql('postgres',
|
|||||||
qq[CREATE TABLE decoding_test(x integer, y text);]);
|
qq[CREATE TABLE decoding_test(x integer, y text);]);
|
||||||
|
|
||||||
$node_master->safe_psql('postgres',
|
$node_master->safe_psql('postgres',
|
||||||
qq[SELECT pg_create_logical_replication_slot('test_slot', 'test_decoding');]);
|
qq[SELECT pg_create_logical_replication_slot('test_slot', 'test_decoding');]
|
||||||
|
);
|
||||||
|
|
||||||
$node_master->safe_psql('postgres',
|
$node_master->safe_psql('postgres',
|
||||||
qq[INSERT INTO decoding_test(x,y) SELECT s, s::text FROM generate_series(1,10) s;]
|
qq[INSERT INTO decoding_test(x,y) SELECT s, s::text FROM generate_series(1,10) s;]
|
||||||
|
@ -60,7 +60,8 @@ $node_master->safe_psql('postgres',
|
|||||||
# the same physical copy trick, so:
|
# the same physical copy trick, so:
|
||||||
$node_master->safe_psql('postgres', 'CREATE DATABASE dropme;');
|
$node_master->safe_psql('postgres', 'CREATE DATABASE dropme;');
|
||||||
$node_master->safe_psql('dropme',
|
$node_master->safe_psql('dropme',
|
||||||
"SELECT pg_create_logical_replication_slot('dropme_slot', 'test_decoding');");
|
"SELECT pg_create_logical_replication_slot('dropme_slot', 'test_decoding');"
|
||||||
|
);
|
||||||
|
|
||||||
$node_master->safe_psql('postgres', 'CHECKPOINT;');
|
$node_master->safe_psql('postgres', 'CHECKPOINT;');
|
||||||
|
|
||||||
|
@ -220,7 +220,8 @@ is( $node->safe_psql('postgres', 'SELECT * FROM alive'),
|
|||||||
|
|
||||||
is( $node->safe_psql(
|
is( $node->safe_psql(
|
||||||
'postgres',
|
'postgres',
|
||||||
'INSERT INTO alive VALUES($$before-orderly-restart$$) RETURNING status'),
|
'INSERT INTO alive VALUES($$before-orderly-restart$$) RETURNING status'
|
||||||
|
),
|
||||||
'before-orderly-restart',
|
'before-orderly-restart',
|
||||||
'can still write after crash restart');
|
'can still write after crash restart');
|
||||||
|
|
||||||
|
@ -338,7 +338,8 @@ test_connect_fails(
|
|||||||
$common_connstr,
|
$common_connstr,
|
||||||
"user=anotheruser sslcert=ssl/client.crt sslkey=ssl/client_tmp.key",
|
"user=anotheruser sslcert=ssl/client.crt sslkey=ssl/client_tmp.key",
|
||||||
qr/certificate authentication failed for user "anotheruser"/,
|
qr/certificate authentication failed for user "anotheruser"/,
|
||||||
"certificate authorization fails with client cert belonging to another user");
|
"certificate authorization fails with client cert belonging to another user"
|
||||||
|
);
|
||||||
|
|
||||||
# revoked client cert
|
# revoked client cert
|
||||||
test_connect_fails(
|
test_connect_fails(
|
||||||
|
@ -66,7 +66,8 @@ elsif ($buildwhat)
|
|||||||
else
|
else
|
||||||
{
|
{
|
||||||
system(
|
system(
|
||||||
"msbuild pgsql.sln /verbosity:normal $msbflags /p:Configuration=$bconf");
|
"msbuild pgsql.sln /verbosity:normal $msbflags /p:Configuration=$bconf"
|
||||||
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
# report status
|
# report status
|
||||||
|
@ -5,6 +5,7 @@
|
|||||||
--entab-leading-whitespace=4
|
--entab-leading-whitespace=4
|
||||||
--keep-old-blank-lines=2
|
--keep-old-blank-lines=2
|
||||||
--maximum-line-length=78
|
--maximum-line-length=78
|
||||||
|
--nooutdent-long-quotes
|
||||||
--nospace-for-semicolon
|
--nospace-for-semicolon
|
||||||
--opening-brace-on-new-line
|
--opening-brace-on-new-line
|
||||||
--output-line-ending=unix
|
--output-line-ending=unix
|
||||||
|
@ -83,8 +83,8 @@ my $aconfver = "";
|
|||||||
open(my $fh, '<', "configure.in") || die "could not read configure.in: $!\n";
|
open(my $fh, '<', "configure.in") || die "could not read configure.in: $!\n";
|
||||||
while (<$fh>)
|
while (<$fh>)
|
||||||
{
|
{
|
||||||
if (
|
if (m/^m4_if\(m4_defn\(\[m4_PACKAGE_VERSION\]\), \[(.*)\], \[\], \[m4_fatal/
|
||||||
m/^m4_if\(m4_defn\(\[m4_PACKAGE_VERSION\]\), \[(.*)\], \[\], \[m4_fatal/)
|
)
|
||||||
{
|
{
|
||||||
$aconfver = $1;
|
$aconfver = $1;
|
||||||
last;
|
last;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user