mirror of
https://github.com/simonw/sqlite-utils.git
synced 2026-07-26 02:44:33 +02:00
sqlite-utils populate-fts --tokenize= option, closes #130
This commit is contained in:
parent
617e6f070c
commit
57e4eb8e55
4 changed files with 35 additions and 11 deletions
|
|
@ -776,7 +776,7 @@ class Table(Queryable):
|
|||
table=self.name,
|
||||
columns=", ".join("[{}]".format(c) for c in columns),
|
||||
fts_version=fts_version,
|
||||
tokenize="\n tokenize='{}',\n".format(tokenize)
|
||||
tokenize="\n tokenize='{}',".format(tokenize)
|
||||
if tokenize
|
||||
else "",
|
||||
)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue