See Rietveld's Issue definition at:
http://google.com/codesearch?q=class+Issue+package%3Ahttp%3A%2F%2Frietveld.googlecode.com
->
class Issue(db.Model):
  # ...
  owner = db.UserProperty(auto_current_user_add=True, required=True)
  # ...

I'm trying to debug a weird failure and I want to retrieve issues for
a specific user in Data Viewer. Tried variations of
SELECT * FROM Issue WHERE owner = xx
with xx being
'mar...@chromium.org'
KEY('User', 'mar...@chromium.org')
USER('mar...@chromium.org')

http://code.google.com/intl/fr/appengine/docs/python/datastore/gqlreference.html
seems to imply USER(email-address) but I just get an invalid GQL query
with USER(mar...@chromium.org).

What's the right way to express a user credential?

Thanks,

M-A

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Google App Engine" group.
To post to this group, send email to google-appengine@googlegroups.com
To unsubscribe from this group, send email to 
google-appengine+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to