FQL: Limit and Offset variance return unexpected results
问题 FQL is hard. Making sure it returns all possible results is one of the most mystifying exercises I can think of. Consider these queries, that only differ by limit and offset, and their returned results: SELECT caption FROM photo WHERE aid IN (SELECT aid FROM album WHERE owner = me()) AND 0 < created AND created < 1299952078 LIMIT 400 OFFSET 0 Returns 400 results. Okay, cool. SELECT caption FROM photo WHERE aid IN (SELECT aid FROM album WHERE owner = me()) AND 0 < created AND created <