> > class Test(ndb.Expando): > a=ndb.StringProperty(repeated=True) > b=ndb.StringProperty(repeated=True) > c=ndb.BooleanProperty() > d=ndb.StringProperty() > > t=Test( > a=["1","2","3","4","5","6","7","8","9","10"], > b=["1","2","3","4","5","6","7","8","9","10","11","12"], > c=True, > d="gg" > ) > delattr(t,"c") > t.put() >
- kind: Test > properties: > - name: a > - name: b > - name: c > - name: d > direction: desc For the above operation, SDK 1.8.2 calculates Write Ops as 172 - after "c" gets deleted, the SDK sets it to None, and None is calculated in the Write Ops, as a composite index member I've tested the same thing on AppEngine itself, although I can't verify 100%, the composite indexes is 0 bytes, so I'm assuming this is a SDK bug? Thanks in Advance -- 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.
