Blob


1 create virtual table webpkg_fts using fts5(id,
2 pkgstem,
3 comment,
4 descr_contents,
5 maintainer);
7 insert into webpkg_fts
8 select pathid,
9 pkgstem,
10 comment,
11 descr_contents,
12 maintainer
13 from portsq;