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