MaxDeterminizedState protects against too-difficult regular expression queries.
(maxDeterminizedStates int)
| 119 | |
| 120 | // MaxDeterminizedState protects against too-difficult regular expression queries. |
| 121 | func (q *QueryStringQuery) MaxDeterminizedState(maxDeterminizedStates int) *QueryStringQuery { |
| 122 | q.maxDeterminizedStates = &maxDeterminizedStates |
| 123 | return q |
| 124 | } |
| 125 | |
| 126 | // AllowLeadingWildcard specifies whether leading wildcards should be allowed |
| 127 | // or not (defaults to true). |
nothing calls this directly
no outgoing calls
no test coverage detected