You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucene.apache.org by mu...@apache.org on 2019/10/29 05:23:07 UTC

[lucene-solr] branch master updated: update documentation for q.op and df

This is an automated email from the ASF dual-hosted git repository.

munendrasn pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/lucene-solr.git


The following commit(s) were added to refs/heads/master by this push:
     new bd0091d  update documentation for q.op and df
bd0091d is described below

commit bd0091d94ebe6b82ded95012d55c269dda31075d
Author: Munendra S N <mu...@apache.org>
AuthorDate: Tue Oct 29 10:51:31 2019 +0530

    update documentation for q.op and df
    
    * defaultSearchField and defaultOperator are removed from schema.
      update the documentation to reflect this change
---
 solr/solr-ref-guide/src/the-standard-query-parser.adoc | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/solr/solr-ref-guide/src/the-standard-query-parser.adoc b/solr/solr-ref-guide/src/the-standard-query-parser.adoc
index fced285..8507c0a 100644
--- a/solr/solr-ref-guide/src/the-standard-query-parser.adoc
+++ b/solr/solr-ref-guide/src/the-standard-query-parser.adoc
@@ -28,10 +28,10 @@ In addition to the <<common-query-parameters.adoc#common-query-parameters,Common
 Defines a query using standard query syntax. This parameter is mandatory.
 
 `q.op`::
-Specifies the default operator for query expressions, overriding the default operator specified in the Schema. Possible values are "AND" or "OR".
+Specifies the default operator for query expressions. Possible values are "AND" or "OR".
 
 `df`::
-Specifies a default field, overriding the definition of a default field in the Schema.
+Specifies a default searchable field.
 
 `sow`::
 Split on whitespace. If set to `true`, text analysis is invoked separately for each individual whitespace-separated term.  The default is `false`; whitespace-separated term sequences will be provided to text analysis in one shot, enabling proper function of analysis filters that operate over term sequences, e.g., multi-word synonyms and shingles.