thelabdude commented on a change in pull request #173: URL: https://github.com/apache/solr/pull/173#discussion_r651153308
########## File path: solr/solr-ref-guide/src/parallel-sql-interface.adoc ########## @@ -240,16 +240,20 @@ The parallel SQL interface supports and pushes down most common SQL operators, s |= |Equals |`fielda = 10` |`fielda:10` |<> |Does not equal |`fielda <> 10` |`-fielda:10` |!= |Does not equal |`fielda != 10` |`-fielda:10` -|> |Greater than |`fielda > 10` | `fielda:{10 TO *]` -|>= |Greater than or equals |`fielda >= 10` | `fielda:[10 TO *]` -|< |Less than |`fielda < 10` | `fielda:[* TO 10}` -|\<= |Less than or equals |`fielda \<= 10` | `fielda:[* TO 10]` +|> |Greater than |`fielda > 10` |`fielda:{10 TO *]` +|>= |Greater than or equals |`fielda >= 10` |`fielda:[10 TO *]` +|< |Less than |`fielda < 10` |`fielda:[* TO 10}` +|\<= |Less than or equals |`fielda \<= 10` |`fielda:[* TO 10]` +|IN |Specify multiple values (shorthand for multiple OR clasues) |`fielda IN (10,20,30)` |`(fielda:10 OR fielda:20 OR fielda:30)` +|LIKE |Wildcard match on string or text fields |`fielda LIKE 'day%'` |`{!complexphrase}fielda:"day*"` +|BETWEEN |Range match |`fielda BETWEEN 2 AND 2` |`((fielda: [2 TO *]) AND (fielda: [* TO 4]))` Review comment: Agreed on that ... that's existing code but will look into changing it ;-) -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: issues-unsubscr...@solr.apache.org For additional commands, e-mail: issues-h...@solr.apache.org