Skip Menu |

This queue is for tickets about the DBIx-Class CPAN distribution.

Report information
The Basics
Id: 33158
Status: rejected
Priority: 0/
Queue: DBIx-Class

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

Bug Information
Severity: Unimportant
Broken in: 0.08009
Fixed in: (no value)



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 they 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
Subject: Re: [rt.cpan.org #33158] DBIx::Class::Storage::DBI::Pg warns when using DBD::Pg 2.0.0
Date: Wed, 13 Feb 2008 10:41:58 +0000
To: Claes Jakobsson via RT <bug-DBIx-Class [...] rt.cpan.org>
From: Matt S Trout <mst [...] shadowcat.co.uk>
On Tue, Feb 12, 2008 at 05:01:02AM -0500, Claes Jakobsson via RT wrote: Show quoted text
> > Tue Feb 12 05:01:01 2008: Request 33158 was acted upon. > Transaction: Ticket created by CLAESJAC > Queue: DBIx-Class > Subject: DBIx::Class::Storage::DBI::Pg warns when using DBD::Pg 2.0.0 > Broken in: 0.08009 > Severity: Unimportant > Owner: Nobody > Requestors: CLAESJAC@cpan.org > Status: new > Ticket <URL: http://rt.cpan.org/Ticket/Display.html?id=33158 > > > > 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 they 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
They forgot to add the $VERSION = eval $VERSION; line when they changed version numbering. Report it against DBD::Pg please, this isn't our bug. -- Matt S Trout Need help with your Catalyst or DBIx::Class project? Technical Director http://www.shadowcat.co.uk/catalyst/ Shadowcat Systems Ltd. Want a managed development or deployment platform? http://chainsawblues.vox.com/ http://www.shadowcat.co.uk/servers/
As noted above, this was a DBD::Pg issue.