unofficial mirror of notmuch@notmuchmail.org
 help / color / mirror / code / Atom feed
* v6 of nondestructive excludes
@ 2017-03-04  1:53 David Bremner
  2017-03-04  1:53 ` [PATCH 1/2] lib: centralize query parsing, store results David Bremner
  2017-03-04  1:53 ` [PATCH 2/2] lib: query make exclude handling non-destructive David Bremner
  0 siblings, 2 replies; 4+ messages in thread
From: David Bremner @ 2017-03-04  1:53 UTC (permalink / raw)
  To: notmuch


I decided to squash the first two patches
id:20170225160913.22844-1-david@tethera.net together to avoid temporarily marking a test broken.

Otherwise the net changes are pretty minimal since the last version.

diff --git a/lib/query.cc b/lib/query.cc
index 2c6a4ba6..59e9141a 100644
--- a/lib/query.cc
+++ b/lib/query.cc
@@ -137,13 +137,15 @@ _notmuch_query_ensure_parsed (notmuch_query_t *query)
 	query->parsed = TRUE;
 
     } catch (const Xapian::Error &error) {
-	_notmuch_database_log (query->notmuch,
-			       "A Xapian exception occured parsing query: %s\n",
-			       error.get_msg().c_str());
-	_notmuch_database_log_append (query->notmuch,
-			       "Query string was: %s\n",
-			       query->query_string);
-	query->notmuch->exception_reported = TRUE;
+	if (!query->notmuch->exception_reported) {
+	    _notmuch_database_log (query->notmuch,
+				   "A Xapian exception occurred parsing query: %s\n",
+				   error.get_msg ().c_str ());
+	    _notmuch_database_log_append (query->notmuch,
+					  "Query string was: %s\n",
+					  query->query_string);
+	    query->notmuch->exception_reported = TRUE;
+	}
 
 	return NOTMUCH_STATUS_XAPIAN_EXCEPTION;
     }
diff --git a/test/T650-regexp-query.sh b/test/T650-regexp-query.sh
index a8039610..df48ab82 100755
--- a/test/T650-regexp-query.sh
+++ b/test/T650-regexp-query.sh
@@ -74,7 +74,7 @@ test_begin_subtest "regexp error reporting"
 notmuch search 'from:/unbalanced[/' 1>OUTPUT 2>&1
 cat <<EOF > EXPECTED
 notmuch search: A Xapian exception occurred
-A Xapian exception occurred performing query: Invalid regular expression
+A Xapian exception occurred parsing query: Invalid regular expression
 Query string was: from:/unbalanced[/
 EOF
 test_expect_equal_file EXPECTED OUTPUT

^ permalink raw reply related	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2017-03-05  2:06 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2017-03-04  1:53 v6 of nondestructive excludes David Bremner
2017-03-04  1:53 ` [PATCH 1/2] lib: centralize query parsing, store results David Bremner
2017-03-05  2:06   ` David Bremner
2017-03-04  1:53 ` [PATCH 2/2] lib: query make exclude handling non-destructive David Bremner

Code repositories for project(s) associated with this public inbox

	https://yhetil.org/notmuch.git/

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).