From a3bb51720c613a1ab2e51ef45541bec8566e4a96 Mon Sep 17 00:00:00 2001 From: Cassandra Targett Date: Fri, 9 Jun 2017 11:44:55 -0500 Subject: [PATCH] Ref Guide: escape pipes in the table --- solr/solr-ref-guide/src/the-standard-query-parser.adoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 f4455d2b97d..94baedf6f25 100644 --- a/solr/solr-ref-guide/src/the-standard-query-parser.adoc +++ b/solr/solr-ref-guide/src/the-standard-query-parser.adoc @@ -246,7 +246,7 @@ Boolean operators allow you to apply Boolean logic to queries, requiring the pre |Boolean Operator |Alternative Symbol |Description |AND |`&&` |Requires both terms on either side of the Boolean operator to be present for a match. |NOT |`!` |Requires that the following term not be present. -|OR |`||` |Requires that either term (or both terms) be present for a match. +|OR |`\|\|` |Requires that either term (or both terms) be present for a match. | |`+` |Requires that the following term be present. | |`-` |Prohibits the following term (that is, matches on fields or documents that do not include that term). The `-` operator is functionally similar to the Boolean operator `!`. Because it's used by popular search engines such as Google, it may be more familiar to some user communities. |===