File tree 1 file changed +2
-6
lines changed
src/test/perl/PostgreSQL/Test 1 file changed +2
-6
lines changed Original file line number Diff line number Diff line change @@ -2933,10 +2933,7 @@ sub corrupt_page_checksum
2933
2933
package PostgreSQL::Test::Cluster::V_11
2934
2934
; # # no critic (ProhibitMultiplePackages)
2935
2935
2936
- # parent.pm is not present in all perl versions before 5.10.1, so instead
2937
- # do directly what it would do for this:
2938
- # use parent -norequire, qw(PostgreSQL::Test::Cluster);
2939
- push @PostgreSQL::Test::Cluster::V_11::ISA , ' PostgreSQL::Test::Cluster' ;
2936
+ use parent -norequire, qw( PostgreSQL::Test::Cluster) ;
2940
2937
2941
2938
# https://www.postgresql.org/docs/11/release-11.html
2942
2939
@@ -2964,8 +2961,7 @@ sub init
2964
2961
package PostgreSQL::Test::Cluster::V_10
2965
2962
; # # no critic (ProhibitMultiplePackages)
2966
2963
2967
- # use parent -norequire, qw(PostgreSQL::Test::Cluster::V_11);
2968
- push @PostgreSQL::Test::Cluster::V_10::ISA , ' PostgreSQL::Test::Cluster::V_11' ;
2964
+ use parent -norequire, qw( PostgreSQL::Test::Cluster::V_11) ;
2969
2965
2970
2966
# https://www.postgresql.org/docs/10/release-10.html
2971
2967
You can’t perform that action at this time.
0 commit comments