[Dbix-class] strange SQL generated

Matt S Trout dbix-class at trout.me.uk
Wed Feb 15 18:47:12 CET 2006


On Wed, Feb 15, 2006 at 09:18:23AM -0800, Alan Humphrey wrote:
> Working against a MSSQL backend this code generates the following SQL:
> 
> my $cols;
> $$cols{id} = 65;
> $$cols{url} = 'test';
> 
> BirdWeb::Admin::Model::Production->resultset('Urls')->update_or_create(
> $cols );
> 
> 
> SQL:
> 
> SELECT me.id, me.url, me.last_checked, me.last_status FROM urls X me WHERE (
> ( id = ? ) ) AND
> (
>     SELECT COUNT(*) FROM urls WHERE me > X.me
> )
> < 1
> ORDER BY me DESC
> 
> 
> The same code running against a MySQL backend works fine.

Smells like an SQL::Abstract::Limit bug.

-- 
     Matt S Trout       Offering custom development, consultancy and support
  Technical Director    contracts for Catalyst, DBIx::Class and BAST. Contact
Shadowcat Systems Ltd.  mst (at) shadowcatsystems.co.uk for more information

 + Help us build a better perl ORM: http://dbix-class.shadowcatsystems.co.uk/ +



More information about the Dbix-class mailing list