From 0e7207b9a78c1e1ace1d9ec8df55b8516c161e38 Mon Sep 17 00:00:00 2001 From: Cassandra Targett Date: Thu, 1 Jun 2017 13:02:41 -0500 Subject: [PATCH] Ref Guide: fix bad bullet item from conversion --- solr/solr-ref-guide/src/the-extended-dismax-query-parser.adoc | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/solr/solr-ref-guide/src/the-extended-dismax-query-parser.adoc b/solr/solr-ref-guide/src/the-extended-dismax-query-parser.adoc index 6f7cf8902fe..fff5909d5ca 100644 --- a/solr/solr-ref-guide/src/the-extended-dismax-query-parser.adoc +++ b/solr/solr-ref-guide/src/the-extended-dismax-query-parser.adoc @@ -24,7 +24,8 @@ In addition to supporting all the DisMax query parser parameters, Extended Disma * supports the <>. * supports queries such as AND, OR, NOT, -, and +. -* treats "and" and "or" as "AND" and "OR" in Lucene syntax mode.respects the 'magic field' names `\_val_` and `\_query_`. These are not a real fields in the Schema, but if used it helps do special things (like a function query in the case of `\_val_` or a nested query in the case of `\_query_`). If `\_val_` is used in a term or phrase query, the value is parsed as a function. +* treats "and" and "or" as "AND" and "OR" in Lucene syntax mode. +* respects the 'magic field' names `\_val_` and `\_query_`. These are not a real fields in the Schema, but if used it helps do special things (like a function query in the case of `\_val_` or a nested query in the case of `\_query_`). If `\_val_` is used in a term or phrase query, the value is parsed as a function. * includes improved smart partial escaping in the case of syntax errors; fielded queries, +/-, and phrase queries are still supported in this mode. * improves proximity boosting by using word shingles; you do not need the query to match all words in the document before proximity boosting is applied. * includes advanced stopword handling: stopwords are not required in the mandatory part of the query but are still used in the proximity boosting part. If a query consists of all stopwords, such as "to be or not to be", then all words are required.