Skip Menu |

This queue is for tickets about the SQL-Abstract-Limit CPAN distribution.

Report information
The Basics
Id: 73444
Status: resolved
Priority: 0/
Queue: SQL-Abstract-Limit

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

Bug Information
Severity: Important
Broken in: 0.141
Fixed in: 0.142



Subject: Offset 0 and dbh
$sqla->select('table', '', '', undef,10, 0, $dbh); $ diff Limit.pm Limit.original.bad 241c241 < my $offset = shift if ( defined $_[0] && $_[0] =~ /^\d+$/ ); --- Show quoted text
> my $offset = shift if ( $_[0] && $_[0] =~ /^\d+$/ );
Fixed with v0.142. Thanks for reporting.