On Thu, Oct 17, 2013 at 5:12 AM, <[email protected]> wrote: > This happened to me today; I have an entity E with properties p1, p2, p3 > I create a new E and Put() it in the datastore. When I run GQL in the > datastore viewer and also when querying from my application I get an > inconsistency: > *select * from E * - DOESN'T return the new instance I created > However, *select * from E where p1 = "..." * (some property value of the > instance I created) - DOES return the instance. > This inconsistency keeps happening event 90 minutes after I put the entity > in the datastore. > >
How many entities are in your datastore? Are you going through each page of search results while using the datastore viewer? Try running *select * from E where p1 = "..."*, then running *select * from E*. Does that make the latter statement run correctly? ----------------- -Vinny P Technology & Media Advisor Chicago, IL App Engine Code Samples: http://www.learntogoogleit.com -- You received this message because you are subscribed to the Google Groups "Google App Engine" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at http://groups.google.com/group/google-appengine. For more options, visit https://groups.google.com/groups/opt_out.
