Differences From Artifact [c8372e8769]:
- File src/db.c — part of check-in [c76b00197f] at 2023-01-18 00:47:10 on branch trunk — Fix a memory leak of the path to a versioned-setting file in print_setting(). (user: stephan size: 166192) [more...]
To Artifact [3ff166cd75]:
- File src/db.c — part of check-in [c1933caf03] at 2023-01-24 02:57:36 on branch search-fts5 — Replace FTS4 with FTS5, per [forum:d05b1855aa|forum post d05b1855aa]. This has been only lightly tested and might require a repo rebuild (or that we rename the associated tables/views rather than recycle them). (user: stephan size: 166234)
| ︙ | |||
1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 | 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 | + |
db, "if_selected", 3, SQLITE_UTF8, 0, file_is_selected,0,0
);
if( g.fSqlTrace ) sqlite3_trace_v2(db, SQLITE_TRACE_PROFILE, db_sql_trace, 0);
db_add_aux_functions(db);
re_add_sql_func(db); /* The REGEXP operator */
foci_register(db); /* The "files_of_checkin" virtual table */
sqlite3_set_authorizer(db, db_top_authorizer, db);
db_register_fts5(db) /* in search.c */;
return db;
}
/*
** Detaches the zLabel database.
*/
|
| ︙ |