Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1800)

Unified Diff: impl/dummy/dummy.go

Issue 1270113002: Re-add metadata passthrough on Get operations (Closed) Base URL: https://github.com/luci/gae.git@fix_other_interfaces
Patch Set: cleanup Created 5 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « filter/featureBreaker/rds.go ('k') | impl/memory/raw_datastore.go » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: impl/dummy/dummy.go
diff --git a/impl/dummy/dummy.go b/impl/dummy/dummy.go
index 75a4f60ff304288caa277e658083ca56099ee1bf..3ce115f8827b7729b85ca8cf2c0261f0d1be9ffb 100644
--- a/impl/dummy/dummy.go
+++ b/impl/dummy/dummy.go
@@ -71,7 +71,9 @@ func (ds) DecodeKey(string) (datastore.Key, error) { panic(ni()) }
func (ds) PutMulti([]datastore.Key, []datastore.PropertyMap, datastore.PutMultiCB) error {
panic(ni())
}
-func (ds) GetMulti([]datastore.Key, datastore.GetMultiCB) error { panic(ni()) }
+func (ds) GetMulti([]datastore.Key, datastore.MultiMetaGetter, datastore.GetMultiCB) error {
+ panic(ni())
+}
func (ds) DeleteMulti([]datastore.Key, datastore.DeleteMultiCB) error { panic(ni()) }
func (ds) NewQuery(string) datastore.Query { panic(ni()) }
func (ds) Run(datastore.Query, datastore.RawRunCB) error { panic(ni()) }
« no previous file with comments | « filter/featureBreaker/rds.go ('k') | impl/memory/raw_datastore.go » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698