1
0
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:
Andrew Dunstan
2018-06-30 12:28:55 -04:00
parent 1e9c858090
commit d842139099
9 changed files with 30 additions and 27 deletions

View File

@ -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");

View File

@ -11,7 +11,7 @@ use strict;
use warnings; use warnings;
use base qw(Project); use base qw(Project);
no warnings qw(redefine); ## no critic no warnings qw(redefine); ## no critic
sub _new sub _new
{ {
@ -401,7 +401,7 @@ use strict;
use warnings; use warnings;
use base qw(MSBuildProject); use base qw(MSBuildProject);
no warnings qw(redefine); ## no critic no warnings qw(redefine); ## no critic
sub new sub new
{ {
@ -424,7 +424,7 @@ use strict;
use warnings; use warnings;
use base qw(MSBuildProject); use base qw(MSBuildProject);
no warnings qw(redefine); ## no critic no warnings qw(redefine); ## no critic
sub new sub new
{ {
@ -470,7 +470,7 @@ use strict;
use warnings; use warnings;
use base qw(VC2012Project); use base qw(VC2012Project);
no warnings qw(redefine); ## no critic no warnings qw(redefine); ## no critic
sub new sub new
{ {
@ -495,7 +495,7 @@ use strict;
use warnings; use warnings;
use base qw(VC2012Project); use base qw(VC2012Project);
no warnings qw(redefine); ## no critic no warnings qw(redefine); ## no critic
sub new sub new
{ {
@ -520,7 +520,7 @@ use strict;
use warnings; use warnings;
use base qw(VC2012Project); use base qw(VC2012Project);
no warnings qw(redefine); ## no critic no warnings qw(redefine); ## no critic
sub new sub new
{ {

View File

@ -10,7 +10,7 @@ use strict;
use warnings; use warnings;
use VSObjectFactory; use VSObjectFactory;
no warnings qw(redefine); ## no critic no warnings qw(redefine); ## no critic
sub _new sub _new
{ {
@ -770,7 +770,7 @@ use strict;
use warnings; use warnings;
use base qw(Solution); use base qw(Solution);
no warnings qw(redefine); ## no critic no warnings qw(redefine); ## no critic
sub new sub new
{ {
@ -795,7 +795,7 @@ use strict;
use warnings; use warnings;
use base qw(Solution); use base qw(Solution);
no warnings qw(redefine); ## no critic no warnings qw(redefine); ## no critic
sub new sub new
{ {
@ -821,7 +821,7 @@ use strict;
use warnings; use warnings;
use base qw(Solution); use base qw(Solution);
no warnings qw(redefine); ## no critic no warnings qw(redefine); ## no critic
sub new sub new
{ {
@ -847,7 +847,7 @@ use strict;
use warnings; use warnings;
use base qw(Solution); use base qw(Solution);
no warnings qw(redefine); ## no critic no warnings qw(redefine); ## no critic
sub new sub new
{ {
@ -873,7 +873,7 @@ use strict;
use warnings; use warnings;
use base qw(Solution); use base qw(Solution);
no warnings qw(redefine); ## no critic no warnings qw(redefine); ## no critic
sub new sub new
{ {
@ -901,7 +901,7 @@ use strict;
use warnings; use warnings;
use base qw(Solution); use base qw(Solution);
no warnings qw(redefine); ## no critic no warnings qw(redefine); ## no critic
sub new sub new
{ {
@ -929,7 +929,7 @@ use strict;
use warnings; use warnings;
use base qw(Solution); use base qw(Solution);
no warnings qw(redefine); ## no critic no warnings qw(redefine); ## no critic
sub new sub new
{ {

View File

@ -11,7 +11,7 @@ use strict;
use warnings; use warnings;
use base qw(Project); use base qw(Project);
no warnings qw(redefine); ## no critic no warnings qw(redefine); ## no critic
sub _new sub _new
{ {
@ -270,7 +270,7 @@ use strict;
use warnings; use warnings;
use base qw(VCBuildProject); use base qw(VCBuildProject);
no warnings qw(redefine); ## no critic no warnings qw(redefine); ## no critic
sub new sub new
{ {
@ -293,7 +293,7 @@ use strict;
use warnings; use warnings;
use base qw(VCBuildProject); use base qw(VCBuildProject);
no warnings qw(redefine); ## no critic no warnings qw(redefine); ## no critic
sub new sub new
{ {

View File

@ -20,7 +20,7 @@ our (@ISA, @EXPORT);
@ISA = qw(Exporter); @ISA = qw(Exporter);
@EXPORT = qw(CreateSolution CreateProject DetermineVisualStudioVersion); @EXPORT = qw(CreateSolution CreateProject DetermineVisualStudioVersion);
no warnings qw(redefine); ## no critic no warnings qw(redefine); ## no critic
sub CreateSolution sub CreateSolution
{ {

View File

@ -107,7 +107,7 @@ sub renamefiles
move $f, $nf; move $f, $nf;
} }
chdir $savedir; chdir $savedir;
return; return;
} }
sub missing sub missing

View File

@ -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);

View File

@ -3,12 +3,12 @@ package Win32API::File;
use strict; 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)]);
1; 1;