Re: [appengine-java] Re: Weird results for JOD query with List item filter (List.contains(....))

2009-11-26 Thread Prashant
any update ? I'm desperately waiting for its solution.. -- You received this message because you are subscribed to the Google Groups Google App Engine for Java group. To post to this group, send email to google-appengine-j...@googlegroups.com. To unsubscribe from this group, send email to

Re: [appengine-java] Re: Weird results for JOD query with List item filter (List.contains(....))

2009-11-25 Thread Ikai L (Google)
Prashant, Is this happening locally? Is EmailID ever an empty value? On Tue, Nov 24, 2009 at 9:57 AM, Prashant antsh...@gmail.com wrote: Max please help me out, it is killing my app. :( On Tue, Nov 24, 2009 at 8:45 PM, Prashant antsh...@gmail.com wrote: this is surely a bug following

Re: [appengine-java] Re: Weird results for JOD query with List item filter (List.contains(....))

2009-11-25 Thread Prashant
no, I have tested it on Production Server and EmailID is a primary key so it cannot be null -- You received this message because you are subscribed to the Google Groups Google App Engine for Java group. To post to this group, send email to google-appengine-j...@googlegroups.com. To unsubscribe

Re: [appengine-java] Re: Weird results for JOD query with List item filter (List.contains(....))

2009-11-25 Thread Ikai L (Google)
Is this something you can cause to happen in a development environment? Also, what is your application ID? On Wed, Nov 25, 2009 at 1:46 PM, Prashant antsh...@gmail.com wrote: no, I have tested it on Production Server and EmailID is a primary key so it cannot be null -- You received this

Re: [appengine-java] Re: Weird results for JOD query with List item filter (List.contains(....))

2009-11-25 Thread Ikai L (Google)
The extra space likely comes from indexes. You can check your indexes in your Indexes tab. For a better understanding of how indexes work, here is a good session from Google I/O that discusses the topic: https://sites.google.com/site/io/under-the-covers-of-the-google-app-engine-datastore On

[appengine-java] Re: Weird results for JOD query with List item filter (List.contains(....))

2009-11-24 Thread Prashant
this is surely a bug following is my test case PersistenceManager pm = pmf.getPersistenceManager(); Query query = pm.newQuery(_Contact.class); query.setOrdering(EmailID); query.setFilter(Groups.contains(\mygroup\)); int i = 1; for(_Contact

[appengine-java] Re: Weird results for JOD query with List item filter (List.contains(....))

2009-11-24 Thread Prashant
Max please help me out, it is killing my app. :( On Tue, Nov 24, 2009 at 8:45 PM, Prashant antsh...@gmail.com wrote: this is surely a bug following is my test case PersistenceManager pm = pmf.getPersistenceManager(); Query query = pm.newQuery(_Contact.class);