dotweblabs / twirl

Yet Another Google App Engine (GAE) Datastore ORM with a twist!
18 stars 8 forks source link

Update bug #26

Open kerbymart opened 10 years ago

kerbymart commented 10 years ago

When updating using:

    List<RootEntity> update_all
            = Lists.newArrayList(store.update(RootEntity.class)
                .greaterThanOrEqual("__key__", "101")
                .with(update101)
                .now());

The resulting datastore query is wrong: SELECT * FROM RootEntity WHERE key > RootEntity("101")

Should be greathan or equal