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

Unified Diff: service/datastore/properties.go

Issue 1302813003: impl/memory: Implement Queries (Closed) Base URL: https://github.com/luci/gae.git@add_multi_iterator
Patch Set: 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
« impl/memory/datastore_index_selection.go ('K') | « service/datastore/index.go ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: service/datastore/properties.go
diff --git a/service/datastore/properties.go b/service/datastore/properties.go
index 44a4361ed895051e1516fb364d810027acfb0952..63156fe68da97b5f7ddf9f4c4600aa2c53861d49 100644
--- a/service/datastore/properties.go
+++ b/service/datastore/properties.go
@@ -209,7 +209,7 @@ func PropertyTypeOf(v interface{}, checkValid bool) (PropertyType, error) {
err = errors.New("time value out of range")
}
if checkValid && !timeLocationIsUTC(x.Location()) {
- err = fmt.Errorf("time value has wrong Location: %v %v", x.Location())
+ err = fmt.Errorf("time value has wrong Location: %v", x.Location())
}
return PTTime, err
case GeoPoint:
« impl/memory/datastore_index_selection.go ('K') | « service/datastore/index.go ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698