Is there any update on this? For multiple queries with a count less than 1000 the value returned by .count() is different from the actual data. Could someone look into this?
Thanks! On Jan 4, 11:31 am, Natalie Gordon <[email protected]> wrote: > Hi, > > With this query I get the value 875: > > active_cards_count = MemberFCItem.gql("WHERE member = :1 and > is_active_in_hand = True", member).count() > > When I look at all the data in the table with this query: > > cards = MemberFCItem.gql("WHERE member = :1", member) > count = 1 > for card in cards: > logger.info(str(count) + " " + str(card.is_active_in_hand)) > count = count + 1 > > There are 948 cards all with value True. > > Could someone look into this? Could there be a corrupt index? My app > id is mylenguajero. > > Thanks, > Nataliewww.lenguajero.com
-- You received this message because you are subscribed to the Google Groups "Google App Engine" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/google-appengine?hl=en.
