mirror of
https://github.com/postgres/postgres.git
synced 2025-07-30 11:03:19 +03:00
perltidy run prior to branching
This commit is contained in:
@ -552,7 +552,10 @@ rmtree("$tempdir/backup_corrupt3");
|
|||||||
|
|
||||||
# do not verify checksums, should return ok
|
# do not verify checksums, should return ok
|
||||||
$node->command_ok(
|
$node->command_ok(
|
||||||
[ 'pg_basebackup', '-D', "$tempdir/backup_corrupt4", '--no-verify-checksums' ],
|
[
|
||||||
|
'pg_basebackup', '-D',
|
||||||
|
"$tempdir/backup_corrupt4", '--no-verify-checksums'
|
||||||
|
],
|
||||||
'pg_basebackup with -k does not report checksum mismatch');
|
'pg_basebackup with -k does not report checksum mismatch');
|
||||||
rmtree("$tempdir/backup_corrupt4");
|
rmtree("$tempdir/backup_corrupt4");
|
||||||
|
|
||||||
|
@ -6,7 +6,7 @@ use warnings;
|
|||||||
use vars qw($HKEY_LOCAL_MACHINE);
|
use vars qw($HKEY_LOCAL_MACHINE);
|
||||||
|
|
||||||
use Exporter ();
|
use Exporter ();
|
||||||
our (@EXPORT,@ISA);
|
our (@EXPORT, @ISA);
|
||||||
@ISA = qw(Exporter);
|
@ISA = qw(Exporter);
|
||||||
@EXPORT = qw($HKEY_LOCAL_MACHINE);
|
@EXPORT = qw($HKEY_LOCAL_MACHINE);
|
||||||
|
|
||||||
|
@ -4,9 +4,9 @@ use strict;
|
|||||||
use warnings;
|
use warnings;
|
||||||
|
|
||||||
use constant { SEM_FAILCRITICALERRORS => 1, SEM_NOGPFAULTERRORBOX => 2 };
|
use constant { SEM_FAILCRITICALERRORS => 1, SEM_NOGPFAULTERRORBOX => 2 };
|
||||||
sub SetErrormode {};
|
sub SetErrormode { }
|
||||||
use Exporter;
|
use Exporter;
|
||||||
our(@ISA,@EXPORT_OK,%EXPORT_TAGS);
|
our (@ISA, @EXPORT_OK, %EXPORT_TAGS);
|
||||||
@ISA = qw(Exporter);
|
@ISA = qw(Exporter);
|
||||||
@EXPORT_OK = qw(SetErrorMode SEM_FAILCRITICALERRORS SEM_NOGPFAULTERRORBOX);
|
@EXPORT_OK = qw(SetErrorMode SEM_FAILCRITICALERRORS SEM_NOGPFAULTERRORBOX);
|
||||||
%EXPORT_TAGS = (SEM_ => [qw(SEM_FAILCRITICALERRORS SEM_NOGPFAULTERRORBOX)]);
|
%EXPORT_TAGS = (SEM_ => [qw(SEM_FAILCRITICALERRORS SEM_NOGPFAULTERRORBOX)]);
|
||||||
|
Reference in New Issue
Block a user