Is it possible to order by multiple fields on GAE? I tried this (both title and subtitle are strings): pages = db().select(db.page.ALL,orderby=db.page.title| db.page.subtitle)
But apparently the results are ordered by the title field only. Looking into the index.yaml, there is NO composite index for those 2 fields generated. Thank you.

