mirror of
https://github.com/kovidgoyal/calibre.git
synced 2025-07-09 03:04:10 -04:00
Skip test that breaks because of sqlite bug on the broken version of sqlite
This commit is contained in:
parent
6516163afc
commit
0a23fabd5b
@ -142,7 +142,10 @@ class FTSTest(BaseTest):
|
||||
self.ae(conn.search("mess"), [("你don't叫>mess<",)])
|
||||
self.ae(conn.search('''"don't"'''), [("你>don't<叫mess",)])
|
||||
self.ae(conn.search("你"), [(">你<don't叫mess",)])
|
||||
self.ae(conn.search("叫"), [("你don't>叫<mess",)])
|
||||
import apsw
|
||||
if apsw.sqlitelibversion() != '3.44.0':
|
||||
# see https://www.sqlite.org/forum/forumpost/d16aeb397d
|
||||
self.ae(conn.search("叫"), [("你don't>叫<mess",)])
|
||||
# }}}
|
||||
|
||||
def test_fts_stemming(self): # {{{
|
||||
|
Loading…
x
Reference in New Issue
Block a user