diff options
author | Robert Haas <rhaas@postgresql.org> | 2022-01-28 14:13:54 -0500 |
---|---|---|
committer | Robert Haas <rhaas@postgresql.org> | 2022-01-28 14:13:54 -0500 |
commit | 82331ed4dd60ce1f8db67e189f793f27cd1aac96 (patch) | |
tree | 2bc2b25996057bf8ce07ec17fa9e41eb8feb6beb | |
parent | aeb4cc9ea07a63ecb4a230513620ceee855a839a (diff) | |
download | postgresql-82331ed4dd60ce1f8db67e189f793f27cd1aac96.tar.gz postgresql-82331ed4dd60ce1f8db67e189f793f27cd1aac96.zip |
Remove superfluous variable.
Jeevan Ladhe
Discussion: http://postgr.es/m/CAOgcT0PJpOiafsmZfGZRLGK1WUqZwYdjFWRwgZTVDQHCCwO-EQ@mail.gmail.com
-rw-r--r-- | src/bin/pg_verifybackup/t/008_untar.pl | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/bin/pg_verifybackup/t/008_untar.pl b/src/bin/pg_verifybackup/t/008_untar.pl index aad7568b659..d32c86e92e5 100644 --- a/src/bin/pg_verifybackup/t/008_untar.pl +++ b/src/bin/pg_verifybackup/t/008_untar.pl @@ -17,7 +17,6 @@ my $primary = PostgreSQL::Test::Cluster->new('primary'); $primary->init(allows_streaming => 1); $primary->start; -my $have_zlib = check_pg_config("#define HAVE_LIBZ 1"); my $backup_path = $primary->backup_dir . '/server-backup'; my $real_backup_path = PostgreSQL::Test::Utils::perl2host($backup_path); my $extract_path = $primary->backup_dir . '/extracted-backup'; |