projects
/
check_postgres.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
bc2a5a4
)
Fix so old versions of Postgres (< 8.0) use the correct default database (Giles Westwood)
author
Greg Sabino Mullane
<
[email protected]
>
Wed, 14 Oct 2009 12:24:00 +0000
(08:24 -0400)
committer
Greg Sabino Mullane
<
[email protected]
>
Wed, 14 Oct 2009 12:24:00 +0000
(08:24 -0400)
check_postgres.pl
patch
|
blob
|
blame
|
history
diff --git
a/check_postgres.pl
b/check_postgres.pl
index 063cdc50e1b80ff7a219db037069992d57ccb869..994090cd15363db1f33b4fee620ec79aa796fb6b 100755
(executable)
--- a/
check_postgres.pl
+++ b/
check_postgres.pl
@@
-993,7
+993,7
@@
$psql_revision =~ s/\D//g;
$VERBOSE >= 2 and warn qq{psql=$PSQL version=$psql_version\n};
-$opt{defaultdb} = $psql_version >=
7.4
? 'postgres' : 'template1';
+$opt{defaultdb} = $psql_version >=
8.0
? 'postgres' : 'template1';
sub add_response {
my ($type,$msg) = @_;
@@
-7898,6
+7898,7
@@
Items not specifically attributed are by Greg Sabino Mullane.
=item B<Version 2.12.1>
+ Fix so old versions of Postgres (< 8.0) use the correct default database (Giles Westwood)
For "same_schema" trigger mismatches, show the attached table.
=item B<Version 2.12.0>