You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@couchdb.apache.org by to...@apache.org on 2016/12/06 20:54:40 UTC

[5/8] couchdb-mango git commit: remove docs for missing_is_null as the feature was removed

remove docs for missing_is_null as the feature was removed


Project: http://git-wip-us.apache.org/repos/asf/couchdb-mango/repo
Commit: http://git-wip-us.apache.org/repos/asf/couchdb-mango/commit/30b3696b
Tree: http://git-wip-us.apache.org/repos/asf/couchdb-mango/tree/30b3696b
Diff: http://git-wip-us.apache.org/repos/asf/couchdb-mango/diff/30b3696b

Branch: refs/heads/upstream
Commit: 30b3696b876533a8321b702be43ae9bbca125040
Parents: ddd6a4d
Author: Robert Newson <rn...@apache.org>
Authored: Wed Oct 19 12:21:13 2016 +0100
Committer: Robert Newson <rn...@apache.org>
Committed: Wed Oct 19 12:21:13 2016 +0100

----------------------------------------------------------------------
 README.md | 1 -
 1 file changed, 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/couchdb-mango/blob/30b3696b/README.md
----------------------------------------------------------------------
diff --git a/README.md b/README.md
index 382681f..e9d4a66 100644
--- a/README.md
+++ b/README.md
@@ -140,7 +140,6 @@ Keys:
 
 * action - "create\_index"
 * index - JSON array following sort syntax, described below
-* missing\_is\_null (optional) (default: false) - When indexing documents that do not contain a field required by the index they are usually ignored for the purpose of that index, using `missing\_is\_null` adds an entry to the index for the document with a value of `null`
 * type (optional) (default: "json") - string, specifying the index type to create. Currently only "json" indexes are supported but in the future we will provide full-text indexes as well as Geo spatial indexes
 * name (optional) - string, optionally specify a name for the index. If a name is not provided one will be automatically generated
 * ddoc (optional) - Indexes can be grouped into design documents underneath the hood for efficiency. This is an advanced feature. Don't specify a design document here unless you know the consequences of index invalidation. By default each index is placed in its own separate design document for isolation.