Skip to content

Commit dbad1c5

Browse files
committed
Add copyright notices to a few perl scripts that don't have them
1 parent 9cd0d77 commit dbad1c5

File tree

9 files changed

+26
-0
lines changed

9 files changed

+26
-0
lines changed

config/check_modules.pl

+3
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
2+
# Copyright (c) 2024, PostgreSQL Global Development Group
3+
14
#
25
# Verify that required Perl modules are available,
36
# in at least the required minimum versions.

src/backend/snowball/snowball_create.pl

+2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
#!/usr/bin/perl
22

3+
# Copyright (c) 2024, PostgreSQL Global Development Group
4+
35
use strict;
46
use warnings FATAL => 'all';
57
use Getopt::Long;

src/test/modules/test_misc/t/002_tablespace.pl

+3
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
2+
# Copyright (c) 2024, PostgreSQL Global Development Group
3+
14
# Simple tablespace tests that can't be replicated on the same host
25
# due to the use of absolute paths, so we keep them out of the regular
36
# regression tests.

src/test/modules/test_misc/t/003_check_guc.pl

+3
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
2+
# Copyright (c) 2024, PostgreSQL Global Development Group
3+
14
# Tests to cross-check the consistency of GUC parameters with
25
# postgresql.conf.sample.
36

src/test/modules/test_misc/t/004_io_direct.pl

+3
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
2+
# Copyright (c) 2024, PostgreSQL Global Development Group
3+
14
# Very simple exercise of direct I/O GUC.
25

36
use strict;

src/test/recovery/t/027_stream_regress.pl

+3
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
2+
# Copyright (c) 2024, PostgreSQL Global Development Group
3+
14
# Run the standard regression tests with streaming replication
25
use strict;
36
use warnings FATAL => 'all';

src/test/recovery/t/032_relfilenode_reuse.pl

+3
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
2+
# Copyright (c) 2024, PostgreSQL Global Development Group
3+
14
use strict;
25
use warnings FATAL => 'all';
36
use PostgreSQL::Test::Cluster;

src/tools/ci/windows_build_config.pl

+3
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
2+
# Copyright (c) 2024, PostgreSQL Global Development Group
3+
14
use strict;
25
use warnings FATAL => 'all';
36

src/tools/gen_export.pl

+3
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
2+
# Copyright (c) 2024, PostgreSQL Global Development Group
3+
14
use strict;
25
use warnings FATAL => 'all';
36
use Getopt::Long;

0 commit comments

Comments
 (0)