Re: [appengine-java] (JDOQL) Is this a bug? (repost)

2009-11-30 Thread Max Ross (Google)
Which SDK are you using? Also, are you seeing this locally or in prod? If you're seeing it in prod can you reproduce the behavior locally? Thanks, Max On Wed, Nov 25, 2009 at 1:15 AM, Prashant antsh...@gmail.com wrote: following is my JDO class: @PersistenceCapable(identityType =

Re: [appengine-java] (JDOQL) Is this a bug? (repost)

2009-11-30 Thread Prashant
And, I am using java sdk 1.2.6 -- 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

[appengine-java] (JDOQL) Is this a bug? (repost)

2009-11-25 Thread Prashant
following is my JDO class: @PersistenceCapable(identityType = IdentityType.APPLICATION) public class _Contact{ @Persistent(primaryKey = true) private String EmailID; @Persistent private String Name; @Persistent private ListString Groups; } following is my test case: