Repository: incubator-geode Updated Branches: refs/heads/develop bb30357c0 -> d5f744e8f
Typo repair, User Manual example, "Creating Indexes on Map Fields" fROM => FROM Project: http://git-wip-us.apache.org/repos/asf/incubator-geode/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-geode/commit/d5f744e8 Tree: http://git-wip-us.apache.org/repos/asf/incubator-geode/tree/d5f744e8 Diff: http://git-wip-us.apache.org/repos/asf/incubator-geode/diff/d5f744e8 Branch: refs/heads/develop Commit: d5f744e8f520986c67130040ac452437ceeb3fd1 Parents: bb30357 Author: Dave Barnes <[email protected]> Authored: Mon Oct 31 10:09:06 2016 -0700 Committer: Dave Barnes <[email protected]> Committed: Mon Oct 31 10:09:06 2016 -0700 ---------------------------------------------------------------------- geode-docs/developing/query_index/creating_map_indexes.html.md.erb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-geode/blob/d5f744e8/geode-docs/developing/query_index/creating_map_indexes.html.md.erb ---------------------------------------------------------------------- diff --git a/geode-docs/developing/query_index/creating_map_indexes.html.md.erb b/geode-docs/developing/query_index/creating_map_indexes.html.md.erb index d1b1523..a7603e9 100644 --- a/geode-docs/developing/query_index/creating_map_indexes.html.md.erb +++ b/geode-docs/developing/query_index/creating_map_indexes.html.md.erb @@ -24,7 +24,7 @@ To assist with the quick lookup of multiple values in a Map (or HashMap) type fi For example, you could create a map index to support the following query: ``` pre -SELECT * fROM /users u WHERE u.name['first'] = 'John' OR u.name['last'] = 'Smith' +SELECT * FROM /users u WHERE u.name['first'] = 'John' OR u.name['last'] = 'Smith' ``` The map index extends regular range indexes created on single key by maintaining indexes for other specified keys, or for all keys if `*` is used. The underlying structure of the map index can be thought of as a wrapper around all these indexes.
