Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Session uses SQLite FTS5 tables that allow full-text searching, but also includes code that renders this type of advanced search inoperable.
This patch restores the functionality, allowing the use of prefix queries (e.g. 'lin*'), Boolean operators (AND, OR and NOT), initial token queries (e.g. '^Linux') and NEAR groups.
Operators must appear in upper case, so 'AND' is a Boolean operator, but 'and' is a search for the literal word 'and'.
Note that whitespace implies a Boolean AND, so 'linux AND applications' is syntactically equivalent to 'linux applications', either of which searches for any message containing both words in any order, and not necessarily appearing contiguously.
To search for the contiguous expression 'linux applications', surround it with double quotes: '"linux applications"'.
Parentheses may be used to change operator precedence and build complex expressions.
The BNF for the FTS query syntax is this:
For more information, please see:
https://www.sqlite.org/fts5.html#full_text_query_syntax
Contributor checklist:
clearnet
branchyarn ready
run passes successfully (more about tests here)