sqlite_lint: add support for FTS5 and virtual tables
This commit is contained in:
@@ -5,6 +5,14 @@ create table stuff (
|
||||
) strict;
|
||||
create index index_stuff_amount on stuff (amount);
|
||||
|
||||
create virtual table stuff_fts using fts5(
|
||||
data,
|
||||
content='stuff',
|
||||
content_rowid='rowid',
|
||||
tokenize='trigram'
|
||||
);
|
||||
|
||||
|
||||
create table stuff2 (
|
||||
weird_pk integer primary key,
|
||||
label text not null unique,
|
||||
|
||||
Reference in New Issue
Block a user