[google-appengine] Re: GQL query failed to return a qualifying entity

2009-08-08 Thread djidjadji
In the beginning of Appengine some objects got lost in the index. The solution was get the object by key and put() it again. This solved it for some people who where missing objects with a query that has a filter. If you don't know the key of the object, page over all keys of that object type and

[google-appengine] Re: GQL query failed to return a qualifying entity

2009-08-06 Thread Jaap Taal
Hi phtq, I've only had this problem once, and after deleting that record it never occured again... The only reason I mentioned it, is because you started this thread! Jaap On Wed, Aug 5, 2009 at 11:28 PM, phtq pher...@typequick.com.au wrote: Hello Jaap, Sounds like this problem is not all

[google-appengine] Re: GQL query failed to return a qualifying entity

2009-08-05 Thread Jaap Taal
Same here, just good old ASCII chars in that record. On Wed, Aug 5, 2009 at 12:55 AM, phtq pher...@typequick.com.au wrote: The fact that the record can be retrieved with any 2 of the 3 filters indicates that there are no hidden characters. On Aug 5, 8:41 am, Wooble geoffsp...@gmail.com

[google-appengine] Re: GQL query failed to return a qualifying entity

2009-08-05 Thread phtq
Hello Jaap, Sounds like this problem is not all that rare, although we have never hit it before in over a year of development on the app engine. I can't relate the problem to anything we have done recently. I don't think we have introduced any new indexes for a while for example. I take it

[google-appengine] Re: GQL query failed to return a qualifying entity

2009-08-04 Thread Jaap Taal
I've experienced a similar problem running on the SDK.aplying two filter()s result in 0 records found. Aplying either one of the filter()s and comparing the resultsets found a record that matches both filter()s. Jaap Taal [ Q42 BV | tel 070 44523 42 | direct 070 44523 65 | http://q42.nl |

[google-appengine] Re: GQL query failed to return a qualifying entity

2009-08-04 Thread Wooble
Are you sure there isn't a space or other non-printable character in your data in the datastore? It's certainly possible your index is corrupt, but I'd check for more likely causes first. On Aug 4, 12:01 am, phtq pher...@typequick.com.au wrote: In our application (kbdlessons version 1-01) we

[google-appengine] Re: GQL query failed to return a qualifying entity

2009-08-04 Thread phtq
The fact that the record can be retrieved with any 2 of the 3 filters indicates that there are no hidden characters. On Aug 5, 8:41 am, Wooble geoffsp...@gmail.com wrote: Are you sure there isn't a space or other non-printable character in your data in the datastore?  It's certainly possible