Oops. Fixing the first problem in trunk. The second error indicates that db.table.id is a very special field on GAE therefore you can do
query = db.table.id>0 query = db.table.id==value but you cannot use it any other query like db.table.id < 10 db.table.id > 5 db.table.id != 7 On May 26, 9:03 pm, NoNoNo <[email protected]> wrote: > I was running an app in GAE dev server, an error was encountered while > hit some function. According to the ticket, the error is : > NameError: global name 'RuntumeError' is not defined > > I assume it would be RuntimeError. Open the the gql.py and corrected > it. This error disappeared. However, there is another error saying : > RuntimeError: (field.id <op> value) is not supported on GAE > > Have no idea what this means. Any reply is welcome. Thanks.

