$ diff `pdng -l Class::DBI::AbstractSearch` Pg.pm 1c1 < package Class::DBI::AbstractSearch; --- > package Class::DBI::AbstractSearch::Pg; 5c5 < $VERSION = 0.05; --- > $VERSION = 0.01; 18a19,21 > my $limit = ($attr) ? delete($attr->{limit}) : undef; > my $offset = ($attr) ? delete($attr->{offset}) : undef; > 30a34,43 > > if ( defined $limit ) { > $limit = int($limit) unless uc($limit) eq 'ALL'; > $phrase .= " LIMIT $limit" > } > if ( defined $offset ) { > $offset = int($offset); > $phrase .= " OFFSET $offset" > } >