]> git.cworth.org Git - notmuch-wiki/blob - lfaq.mdwn
move one faq entry to "less frequently asked questions".
[notmuch-wiki] / lfaq.mdwn
1 [[!img notmuch-logo.png alt="Notmuch logo" class="left"]]
2 # Less Frequently Asked Questions
3
4 [[!toc levels=2]]
5
6 ## T150-tagging.sh is failing with Xapian 1.4.6
7
8 This is (probably) a bug in this point release of Xapian, should be
9 fixed in 1.4.7.  Try reverting Xapian commit
10 `093999529acc2f86900d91fed0c7f7af301ab94a`, e.g. with the following
11 patch.
12
13
14     index 80e578b85..a47f14a68 100644
15     --- a/xapian-core/backends/glass/glass_postlist.cc
16     +++ b/xapian-core/backends/glass/glass_postlist.cc
17     @@ -759,7 +759,7 @@ GlassPostList::open_nearby_postlist(const std::string & term_,
18          (void)need_pos;
19          if (term_.empty())
20             RETURN(NULL);
21     -    if (!this_db.get() || this_db->postlist_table.is_modified())
22     +    if (!this_db.get() || this_db->postlist_table.is_writable())
23             RETURN(NULL);
24          RETURN(new GlassPostList(this_db, term_, cursor->clone()));
25      }
26