diff options
author | Andrew Dunstan <andrew@dunslane.net> | 2021-05-07 10:56:14 -0400 |
---|---|---|
committer | Andrew Dunstan <andrew@dunslane.net> | 2021-05-07 10:56:14 -0400 |
commit | 8fa6e6919c1aaa6f74c74e16452aaf0b5f3b4cd5 (patch) | |
tree | 259a4b2f67a9814659137c59cebd05bb6cf79459 /src/bin/pg_rewind/t | |
parent | 44f90ad092f95fe19bebb51465193bc63849c15f (diff) | |
download | postgresql-8fa6e6919c1aaa6f74c74e16452aaf0b5f3b4cd5.tar.gz postgresql-8fa6e6919c1aaa6f74c74e16452aaf0b5f3b4cd5.zip |
Add a copyright notice to perl files lacking one.
Diffstat (limited to 'src/bin/pg_rewind/t')
-rw-r--r-- | src/bin/pg_rewind/t/001_basic.pl | 3 | ||||
-rw-r--r-- | src/bin/pg_rewind/t/002_databases.pl | 3 | ||||
-rw-r--r-- | src/bin/pg_rewind/t/003_extrafiles.pl | 3 | ||||
-rw-r--r-- | src/bin/pg_rewind/t/004_pg_xlog_symlink.pl | 3 | ||||
-rw-r--r-- | src/bin/pg_rewind/t/005_same_timeline.pl | 3 | ||||
-rw-r--r-- | src/bin/pg_rewind/t/006_options.pl | 3 | ||||
-rw-r--r-- | src/bin/pg_rewind/t/007_standby_source.pl | 3 | ||||
-rw-r--r-- | src/bin/pg_rewind/t/008_min_recovery_point.pl | 3 | ||||
-rw-r--r-- | src/bin/pg_rewind/t/RewindTest.pm | 3 |
9 files changed, 27 insertions, 0 deletions
diff --git a/src/bin/pg_rewind/t/001_basic.pl b/src/bin/pg_rewind/t/001_basic.pl index 93fa09467b4..15a6f25adee 100644 --- a/src/bin/pg_rewind/t/001_basic.pl +++ b/src/bin/pg_rewind/t/001_basic.pl @@ -1,3 +1,6 @@ + +# Copyright (c) 2021, PostgreSQL Global Development Group + use strict; use warnings; use TestLib; diff --git a/src/bin/pg_rewind/t/002_databases.pl b/src/bin/pg_rewind/t/002_databases.pl index 5506fe425bc..72c4b225a7f 100644 --- a/src/bin/pg_rewind/t/002_databases.pl +++ b/src/bin/pg_rewind/t/002_databases.pl @@ -1,3 +1,6 @@ + +# Copyright (c) 2021, PostgreSQL Global Development Group + use strict; use warnings; use TestLib; diff --git a/src/bin/pg_rewind/t/003_extrafiles.pl b/src/bin/pg_rewind/t/003_extrafiles.pl index 5b953b11ae8..4fc500d4b4c 100644 --- a/src/bin/pg_rewind/t/003_extrafiles.pl +++ b/src/bin/pg_rewind/t/003_extrafiles.pl @@ -1,3 +1,6 @@ + +# Copyright (c) 2021, PostgreSQL Global Development Group + # Test how pg_rewind reacts to extra files and directories in the data dirs. use strict; diff --git a/src/bin/pg_rewind/t/004_pg_xlog_symlink.pl b/src/bin/pg_rewind/t/004_pg_xlog_symlink.pl index fff47585083..8fb0ab3eadd 100644 --- a/src/bin/pg_rewind/t/004_pg_xlog_symlink.pl +++ b/src/bin/pg_rewind/t/004_pg_xlog_symlink.pl @@ -1,3 +1,6 @@ + +# Copyright (c) 2021, PostgreSQL Global Development Group + # # Test pg_rewind when the target's pg_wal directory is a symlink. # diff --git a/src/bin/pg_rewind/t/005_same_timeline.pl b/src/bin/pg_rewind/t/005_same_timeline.pl index 8706d5aed5c..efe1d4c77f5 100644 --- a/src/bin/pg_rewind/t/005_same_timeline.pl +++ b/src/bin/pg_rewind/t/005_same_timeline.pl @@ -1,3 +1,6 @@ + +# Copyright (c) 2021, PostgreSQL Global Development Group + # # Test that running pg_rewind with the source and target clusters # on the same timeline runs successfully. diff --git a/src/bin/pg_rewind/t/006_options.pl b/src/bin/pg_rewind/t/006_options.pl index 1515696e663..81793899e59 100644 --- a/src/bin/pg_rewind/t/006_options.pl +++ b/src/bin/pg_rewind/t/006_options.pl @@ -1,3 +1,6 @@ + +# Copyright (c) 2021, PostgreSQL Global Development Group + # # Test checking options of pg_rewind. # diff --git a/src/bin/pg_rewind/t/007_standby_source.pl b/src/bin/pg_rewind/t/007_standby_source.pl index 7a597bf12bd..44319a8204e 100644 --- a/src/bin/pg_rewind/t/007_standby_source.pl +++ b/src/bin/pg_rewind/t/007_standby_source.pl @@ -1,3 +1,6 @@ + +# Copyright (c) 2021, PostgreSQL Global Development Group + # # Test using a standby server as the source. # diff --git a/src/bin/pg_rewind/t/008_min_recovery_point.pl b/src/bin/pg_rewind/t/008_min_recovery_point.pl index e3d94b3346d..7d9362cc229 100644 --- a/src/bin/pg_rewind/t/008_min_recovery_point.pl +++ b/src/bin/pg_rewind/t/008_min_recovery_point.pl @@ -1,3 +1,6 @@ + +# Copyright (c) 2021, PostgreSQL Global Development Group + # # Test situation where a target data directory contains # WAL records beyond both the last checkpoint and the divergence diff --git a/src/bin/pg_rewind/t/RewindTest.pm b/src/bin/pg_rewind/t/RewindTest.pm index 41ed7d4b3be..55a350af9d6 100644 --- a/src/bin/pg_rewind/t/RewindTest.pm +++ b/src/bin/pg_rewind/t/RewindTest.pm @@ -1,3 +1,6 @@ + +# Copyright (c) 2021, PostgreSQL Global Development Group + package RewindTest; # Test driver for pg_rewind. Each test consists of a cycle where a new cluster |