mirror of
https://github.com/simonw/sqlite-utils.git
synced 2026-07-23 01:14:31 +02:00
Fixed failing FTS5 test, release as 0.6.1
This commit is contained in:
parent
594b25ef9f
commit
8e2a313c1e
2 changed files with 2 additions and 2 deletions
2
setup.py
2
setup.py
|
|
@ -2,7 +2,7 @@ from setuptools import setup, find_packages
|
|||
import io
|
||||
import os
|
||||
|
||||
VERSION = "0.6"
|
||||
VERSION = "0.6.1"
|
||||
|
||||
|
||||
def get_long_description():
|
||||
|
|
|
|||
|
|
@ -25,7 +25,7 @@ def test_enable_fts(fresh_db):
|
|||
def test_populate_fts(fresh_db):
|
||||
table = fresh_db["populatable"]
|
||||
table.insert(search_records[0])
|
||||
table.enable_fts(["text", "country"])
|
||||
table.enable_fts(["text", "country"], fts_version="FTS4")
|
||||
assert [] == table.search("trash pandas")
|
||||
table.insert(search_records[1])
|
||||
assert [] == table.search("trash pandas")
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue