diff options
Diffstat (limited to 'test/it_dbi.t')
-rwxr-xr-x | test/it_dbi.t | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/test/it_dbi.t b/test/it_dbi.t index a5d9f92..750841a 100755 --- a/test/it_dbi.t +++ b/test/it_dbi.t @@ -355,6 +355,7 @@ is($r->ID, 6, "Simple LIMIT: id"); $count = $r->select(['ID >' => 0, 'ORDER BY ID DESC', 'LIMIT' => "1, 2"]); is($count, 2, "LIMIT with offset: count"); is($r->ID, 5, "LIMIT with offset: id"); +is($r->select(['ID >' => 0, 'ORDER BY ID DESC', 'LIMIT' => false]), 5, "no limit"); # Check if iterator clears dynfields left over from previous record $r->delete(["WHERE 1"]); |