Apparently, SimpleDB interprets the "limit N" clause of the query to mean "how many should I return in one page" not "how many should I return altogether" so if you pass in "limit 10" you will see the results chunked in batches of 10 but each result returned will contain a NextToken element which triggers the resultset to go fetch more results.
Short of actually parsing the select string in boto (and I'm really not crazy about that idea) I'm not exactly sure how to solve this one. Suggestions?
Mitch