As far as I can tell there's no YQL implementation of the sort field for flickr.photos.search (this is different than the post-query sort processing). Is this right? It seems that it's a bit limiting without it.
For instance, the following YQL select statement returns results:
select * from flickr.photos.search where text="testing"
But this query returns no results:
select * from flickr.photos.search where text="testing" and sort="relevance"
The "sort" field is part of the Flickr REST API for flickr.photos.search so it seems like it should be relatively easy to implement (see
http://www.flickr.com/services/api/flickr....os.search.html).
Or am I just missing something here?

-David