Index: service/datastore/datastore.go |
diff --git a/service/datastore/datastore.go b/service/datastore/datastore.go |
index 456835ad36a14c460ea62f112a1a8e3a394fac95..cbf30e675992aa1ab67c1142c283cab58e05e8b7 100644 |
--- a/service/datastore/datastore.go |
+++ b/service/datastore/datastore.go |
@@ -27,6 +27,10 @@ func (d *datastoreImpl) KeyForObjErr(src interface{}) (Key, error) { |
return newKeyObjErr(d.NewKey, src) |
} |
+func (d *datastoreImpl) DecodeCursor(s string) (Cursor, error) { |
+ return d.RawInterface.DecodeCursor(s) |
+} |
+ |
func (d *datastoreImpl) Run(q Query, cbIface interface{}) error { |
// TODO(riannucci): Profile and determine if any of this is causing a real |
// slowdown. Could potentially cache reflection stuff by cbType? |