Toby Corkindale wrote:
> I  think this is actually an SQL::Abstract bug, but the SQLA docs say to
> try the dbic mailing lists for support, so..
> 
> 
> Steps to reproduce under SQL::Abstract:
> my $sql = SQL::Abstract->new;
> my($stmt, @bind) = $sql->select('foo', 'foo', {
>         address => { '>>=' => '10.2.3.4' },
>     }
> );
> 
> $stmt contains:
> SELECT foo FROM foo WHERE ( address = >>=( ? ) )
> what it *should* contain:
> SELECT foo FROM foo WHERE ( address >>= ? )
> 

Upgrade SQL::Abstract.

_______________________________________________
List: http://lists.scsys.co.uk/cgi-bin/mailman/listinfo/dbix-class
IRC: irc.perl.org#dbix-class
SVN: http://dev.catalyst.perl.org/repos/bast/DBIx-Class/
Searchable Archive: http://www.grokbase.com/group/[email protected]

Reply via email to