Skip to content

Commit 089f23c

Browse files
mikelolasagastijfcoz
authored andcommitted
Add pgsql13 and update upstream support status for other versions.
Also, print link with upstream Support Dates for already unsupported versions and soon to be unsupported versions.
1 parent d96412e commit 089f23c

File tree

1 file changed

+10
-3
lines changed

1 file changed

+10
-3
lines changed

postgresqltuner.pl

+10-3
Original file line numberDiff line numberDiff line change
@@ -439,20 +439,27 @@ sub usage {
439439
add_advice("version","high","If this instance is a production server, then only use stable versions");
440440
}
441441
my $pg_upgrade="Upgrade to the latest stable PostgreSQL version";
442-
if (min_version('12.0')) {
442+
my $pg_supportdates="Check https://www.postgresql.org/support/versioning/ for upstream support dates";
443+
if (min_version('13.0')) {
443444
print_report_ok("You are using the latest PostreSQL major version ($version)");
445+
} elsif (min_version('12.0')) {
446+
print_report_ok($pg_upgrade);
447+
add_advice("version","low",$pg_upgrade);
444448
} elsif (min_version('11.0')) {
445449
print_report_ok($pg_upgrade);
446450
add_advice("version","low",$pg_upgrade);
447451
} elsif (min_version('10.0')) {
448452
print_report_warn($pg_upgrade);
449453
add_advice("version","low",$pg_upgrade);
450-
} elsif (min_version('9.0')) {
454+
add_advice("version","low",$pg_supportdates);
455+
} elsif (min_version('9.5')) {
451456
print_report_warn($pg_upgrade);
452457
add_advice("version","medium",$pg_upgrade);
458+
add_advice("version","medium",$pg_supportdates);
453459
} elsif (min_version('8.1')) {
454-
print_report_bad("You are using PostreSQL version $version, which is very old");
460+
print_report_bad("You are using PostreSQL version $version, which is unsupported upstream");
455461
add_advice("version","high",$pg_upgrade);
462+
add_advice("version","high",$pg_supportdates);
456463
} else {
457464
print_report_bad("You are using PostreSQL version $version, which is very old and not supported by this script");
458465
add_advice("version","high",$pg_upgrade);

0 commit comments

Comments
 (0)