Skip Menu |

This queue is for tickets about the DBD-Pg CPAN distribution.

Report information
The Basics
Id: 33206
Status: resolved
Priority: 0/
Queue: DBD-Pg

People
Owner: Nobody in particular
Requestors: CLAESJAC [...] cpan.org
Cc:
AdminCc:

Bug Information
Severity: Unimportant
Broken in: 2.0.0
Fixed in: 2.1.0



Subject: DBIx::Class::Storage::DBI::Pg warns when using DBD::Pg 2.0.0
There's a if-statement in DBIx::Class::Storage::DBI::Pg that check if we're using a DBD::Pg with version less than 1.49. Now with DBD::Pg 2.0.0 you have switched versioning scheme to 3 digit format which causes the following warning. Argument "2.0.0" isn't numeric in numeric lt (<) at /usr/local/share/perl/5.8.8/DBIx/Class/Storage/DBI/Pg.pm line 13 According to the DBIx::Class people this is a DBD::Pg bug may affect other distributions relying on DBD::Pg as well. See Matt S Trouts reply here on a fix http://rt.cpan.org/Ticket/Display.html?id=33158#txn- 421370 Thanks, Claes
From: greg [...] turnstep.com
The $VERSION = eval $VERSION; mentioned elsewhere won't work, but I have changed the code to do: use version; our $VERSION = qv("2.0.1"); Checked in as r10736: testing appreciated.