Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
| Comment: | Clean rebuild of SQLite (so the source_id of fts5 matches the one from SQLite itself) |
|---|---|
| Downloads: | Tarball | ZIP archive |
| Timelines: | family | ancestors | descendants | both | trunk |
| Files: | files | file ages | folders |
| SHA1: |
5b30c544d5e25eb5f13adc304d143d8d |
| User & Date: | jan.nijtmans 2015-12-17 15:58:20.542 |
Context
|
2015-12-19
| ||
| 13:08 | Fix a minor typo in the git-import logic. check-in: f7afea949d user: drh tags: trunk | |
|
2015-12-17
| ||
| 15:58 | Clean rebuild of SQLite (so the source_id of fts5 matches the one from SQLite itself) check-in: 5b30c544d5 user: jan.nijtmans tags: trunk | |
| 03:29 | Minor corrections in grammar to Fossil vs Git rewrite. check-in: 0b90da304f user: andybradford tags: trunk | |
Changes
Changes to src/sqlite3.c.
| ︙ | ︙ | |||
182121 182122 182123 182124 182125 182126 182127 |
*/
static void fts5SourceIdFunc(
sqlite3_context *pCtx, /* Function call context */
int nArg, /* Number of args */
sqlite3_value **apVal /* Function arguments */
){
assert( nArg==0 );
| | | 182121 182122 182123 182124 182125 182126 182127 182128 182129 182130 182131 182132 182133 182134 182135 |
*/
static void fts5SourceIdFunc(
sqlite3_context *pCtx, /* Function call context */
int nArg, /* Number of args */
sqlite3_value **apVal /* Function arguments */
){
assert( nArg==0 );
sqlite3_result_text(pCtx, "fts5: 2015-12-11 13:51:02 e998513e442ce1206b12dc28bdc996d7b5f9f94d", -1, SQLITE_TRANSIENT);
}
static int fts5Init(sqlite3 *db){
static const sqlite3_module fts5Mod = {
/* iVersion */ 2,
/* xCreate */ fts5CreateMethod,
/* xConnect */ fts5ConnectMethod,
|
| ︙ | ︙ |