Subject: | Argument isn't numeric in lt |
At line 808 in Pg.pm, there is a line which checks that the version is at least 7.3. I have installed version 7.3.4 which now produces the following error:
[Fri Aug 8 10:42:42 2003] updater.setup.dat: Argument "7.3.4" isn't numeric in numeric lt (<) at /usr/local/lib/perl/5.6.1/DBD/Pg.pm line 808.
Using the following regular expression, I was able to avoid the error message:
$version = "$1.$2" if ( $version =~ /(\d+)\.(\d+)\.(\d+)/ );
Hopefully this is already fixed in the CVS version.
Thanks,
William