1
0
mirror of https://github.com/sqlite/sqlite.git synced 2025-08-01 06:27:03 +03:00

Add experimental implementation of FTS3 functions matchinfo() and snippet() (not enabled by default).

FossilOrigin-Name: 51f7ee844057086789dcfcdcba7daf45343cae62
This commit is contained in:
dan
2010-01-02 19:02:02 +00:00
parent 855787a1b3
commit a98af17af6
8 changed files with 739 additions and 292 deletions

View File

@ -736,7 +736,6 @@ void sqlite3Fts3ExprFree(Fts3Expr *p){
sqlite3Fts3ExprFree(p->pLeft);
sqlite3Fts3ExprFree(p->pRight);
sqlite3_free(p->aDoclist);
sqlite3_free(p->aHist);
sqlite3_free(p);
}
}