Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
P
Postgres FD Implementation
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Abuhujair Javed
Postgres FD Implementation
Commits
d8421390
Commit
d8421390
authored
Jun 30, 2018
by
Andrew Dunstan
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
perltidy run prior to branching
parent
1e9c8580
Changes
9
Show whitespace changes
Inline
Side-by-side
Showing
9 changed files
with
30 additions
and
27 deletions
+30
-27
src/bin/pg_basebackup/t/010_pg_basebackup.pl
src/bin/pg_basebackup/t/010_pg_basebackup.pl
+4
-1
src/test/ssl/ServerSetup.pm
src/test/ssl/ServerSetup.pm
+1
-1
src/tools/msvc/MSBuildProject.pm
src/tools/msvc/MSBuildProject.pm
+6
-6
src/tools/msvc/Solution.pm
src/tools/msvc/Solution.pm
+8
-8
src/tools/msvc/VCBuildProject.pm
src/tools/msvc/VCBuildProject.pm
+3
-3
src/tools/msvc/VSObjectFactory.pm
src/tools/msvc/VSObjectFactory.pm
+1
-1
src/tools/msvc/builddoc.pl
src/tools/msvc/builddoc.pl
+1
-1
src/tools/msvc/dummylib/Win32/Registry.pm
src/tools/msvc/dummylib/Win32/Registry.pm
+1
-1
src/tools/msvc/dummylib/Win32API/File.pm
src/tools/msvc/dummylib/Win32API/File.pm
+5
-5
No files found.
src/bin/pg_basebackup/t/010_pg_basebackup.pl
View file @
d8421390
...
@@ -552,7 +552,10 @@ rmtree("$tempdir/backup_corrupt3");
...
@@ -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
");
...
...
src/test/ssl/ServerSetup.pm
View file @
d8421390
src/tools/msvc/MSBuildProject.pm
View file @
d8421390
src/tools/msvc/Solution.pm
View file @
d8421390
src/tools/msvc/VCBuildProject.pm
View file @
d8421390
src/tools/msvc/VSObjectFactory.pm
View file @
d8421390
src/tools/msvc/builddoc.pl
View file @
d8421390
src/tools/msvc/dummylib/Win32/Registry.pm
View file @
d8421390
...
@@ -6,7 +6,7 @@ use warnings;
...
@@ -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)
;
...
...
src/tools/msvc/dummylib/Win32API/File.pm
View file @
d8421390
...
@@ -4,9 +4,9 @@ use strict;
...
@@ -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)
]);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment