Hey Jeremy,
Current behavior in Sequel seems to be:
User.first.items_dataset[2]
# => SELECT * FROM "items" WHERE ("items"."user_id" = 1) LIMIT 2
I think it should be:
User.first.items_dataset[2]
# => SELECT * FROM "items" WHERE ("items"."user_id" = 1) AND
("Items"."id" = 2)
Is there a reason for the current behavior, or is this a bug?
--David
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"sequel-talk" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/sequel-talk?hl=en
-~----------~----~----~----~------~----~------~--~---