mirror of
https://git.notmuchmail.org/git/notmuch
synced 2024-11-21 18:38:08 +01:00
lib: handle empty string in regexp field processors
The non-field processor behaviour is is convert the corresponding queries into a search for the unprefixed terms. This yields pretty surprising results so I decided to generate a query that would match the terms (i.e. none with that prefix) generated for an empty header.
This commit is contained in:
parent
bc0c051e04
commit
cb84f84878
2 changed files with 5 additions and 2 deletions
|
@ -148,6 +148,11 @@ RegexpFieldProcessor::RegexpFieldProcessor (std::string prefix, Xapian::QueryPar
|
|||
Xapian::Query
|
||||
RegexpFieldProcessor::operator() (const std::string & str)
|
||||
{
|
||||
if (str.size () == 0)
|
||||
return Xapian::Query(Xapian::Query::OP_AND_NOT,
|
||||
Xapian::Query::MatchAll,
|
||||
Xapian::Query (Xapian::Query::OP_WILDCARD, term_prefix));
|
||||
|
||||
if (str.at (0) == '/') {
|
||||
if (str.at (str.size () - 1) == '/'){
|
||||
RegexpPostingSource *postings = new RegexpPostingSource (slot, str.substr(1,str.size () - 2));
|
||||
|
|
|
@ -16,7 +16,6 @@ add_message '[from]="-" [subject]="empty from"'
|
|||
add_message '[subject]="-"'
|
||||
|
||||
test_begin_subtest "null from: search"
|
||||
test_subtest_known_broken
|
||||
notmuch search 'from:""' | notmuch_search_sanitize > OUTPUT
|
||||
cat <<EOF > EXPECTED
|
||||
thread:XXX 2001-01-05 [1/1] -; empty from (inbox unread)
|
||||
|
@ -24,7 +23,6 @@ EOF
|
|||
test_expect_equal_file EXPECTED OUTPUT
|
||||
|
||||
test_begin_subtest "null subject: search"
|
||||
test_subtest_known_broken
|
||||
notmuch search 'subject:""' | notmuch_search_sanitize > OUTPUT
|
||||
cat <<EOF > EXPECTED
|
||||
thread:XXX 2001-01-05 [1/1] Notmuch Test Suite; - (inbox unread)
|
||||
|
|
Loading…
Reference in a new issue