Add copyright notices to a few perl scripts that don't have them

This commit is contained in:
Andrew Dunstan 2024-01-05 13:15:50 +00:00
parent 9cd0d77dfc
commit dbad1c53e9
9 changed files with 26 additions and 0 deletions

View File

@ -1,3 +1,6 @@
# Copyright (c) 2024, PostgreSQL Global Development Group
#
# Verify that required Perl modules are available,
# in at least the required minimum versions.

View File

@ -1,5 +1,7 @@
#!/usr/bin/perl
# Copyright (c) 2024, PostgreSQL Global Development Group
use strict;
use warnings FATAL => 'all';
use Getopt::Long;

View File

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

View File

@ -1,3 +1,6 @@
# Copyright (c) 2024, PostgreSQL Global Development Group
# Tests to cross-check the consistency of GUC parameters with
# postgresql.conf.sample.

View File

@ -1,3 +1,6 @@
# Copyright (c) 2024, PostgreSQL Global Development Group
# Very simple exercise of direct I/O GUC.
use strict;

View File

@ -1,3 +1,6 @@
# Copyright (c) 2024, PostgreSQL Global Development Group
# Run the standard regression tests with streaming replication
use strict;
use warnings FATAL => 'all';

View File

@ -1,3 +1,6 @@
# Copyright (c) 2024, PostgreSQL Global Development Group
use strict;
use warnings FATAL => 'all';
use PostgreSQL::Test::Cluster;

View File

@ -1,3 +1,6 @@
# Copyright (c) 2024, PostgreSQL Global Development Group
use strict;
use warnings FATAL => 'all';

View File

@ -1,3 +1,6 @@
# Copyright (c) 2024, PostgreSQL Global Development Group
use strict;
use warnings FATAL => 'all';
use Getopt::Long;