LowercaseExpandedTerms indicates whether terms of wildcard, prefix, fuzzy and range queries are automatically lower-cased or not. Default is true. Deprecated: Decision is now made by the analyzer.
(lowercaseExpandedTerms bool)
| 135 | // |
| 136 | // Deprecated: Decision is now made by the analyzer. |
| 137 | func (q *QueryStringQuery) LowercaseExpandedTerms(lowercaseExpandedTerms bool) *QueryStringQuery { |
| 138 | q.lowercaseExpandedTerms = &lowercaseExpandedTerms |
| 139 | return q |
| 140 | } |
| 141 | |
| 142 | // EnablePositionIncrements indicates whether to enable position increments |
| 143 | // in result query. Defaults to true. |
nothing calls this directly
no outgoing calls
no test coverage detected