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,
Natalie
www.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.


Reply via email to