Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
| Comment: | Remove two SQLite version checks which no longer serve any purpose |
|---|---|
| Downloads: | Tarball | ZIP archive |
| Timelines: | family | ancestors | descendants | both | trunk | sqlite3-compat |
| Files: | files | file ages | folders |
| SHA1: |
2864db30806fc5e3bf2a26e19f8cbf87 |
| User & Date: | jan.nijtmans 2014-01-21 11:05:49.910 |
Context
|
2014-04-10
| ||
| 15:16 | Cherry-pick [f2ebd7e52d16891bdbf2eb423891ad007e744f61|f2ebd7e52d]: Make use of a recursive query capability (if available) to replace the compute_ancestors() function with a single query. ... (check-in: 52d8026045 user: jan.nijtmans tags: branch-1.28) | |
|
2014-01-21
| ||
| 17:43 | merged in rss-cli. ... (check-in: 4d91004271 user: stephan tags: trunk) | |
| 11:05 | Remove two SQLite version checks which no longer serve any purpose ... (check-in: 2864db3080 user: jan.nijtmans tags: trunk, sqlite3-compat) | |
| 00:38 | Update the built-in SQLite to the latest 3.8.3 beta that includes support for the LEVEL pseudo-column on recursive queries. Make use of a recursive query capability and the LEVEL column to replace the compute_ancestors() function with a single query. ... (check-in: f2ebd7e52d user: drh tags: trunk) | |
Changes
Changes to src/browse.c.
| ︙ | ︙ | |||
515 516 517 518 519 520 521 |
Stmt ins, q;
ManifestFile *pFile;
db_multi_exec(
"CREATE TEMP TABLE filelist("
" x TEXT PRIMARY KEY COLLATE nocase,"
" uuid TEXT"
| < < | | 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 |
Stmt ins, q;
ManifestFile *pFile;
db_multi_exec(
"CREATE TEMP TABLE filelist("
" x TEXT PRIMARY KEY COLLATE nocase,"
" uuid TEXT"
") WITHOUT ROWID;"
);
db_prepare(&ins, "INSERT OR IGNORE INTO filelist VALUES(:f,:u)");
manifest_file_rewind(pM);
while( (pFile = manifest_file_next(pM,0))!=0 ){
if( nD>0
&& (fossil_strncmp(pFile->zName, zD, nD-1)!=0
|| pFile->zName[nD-1]!='/')
|
| ︙ | ︙ |
Changes to src/main.c.
| ︙ | ︙ | |||
599 600 601 602 603 604 605 |
g.tcl.argv = copy_args(g.argc, g.argv); /* save full arguments */
#endif
g.mainTimerId = fossil_timer_start();
g.zVfsName = find_option("vfs",0,1);
if( g.zVfsName==0 ){
g.zVfsName = fossil_getenv("FOSSIL_VFS");
#if defined(__CYGWIN__)
| | | 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 |
g.tcl.argv = copy_args(g.argc, g.argv); /* save full arguments */
#endif
g.mainTimerId = fossil_timer_start();
g.zVfsName = find_option("vfs",0,1);
if( g.zVfsName==0 ){
g.zVfsName = fossil_getenv("FOSSIL_VFS");
#if defined(__CYGWIN__)
if( g.zVfsName==0 ){
g.zVfsName = "win32-longpath";
}
#endif
}
if( g.zVfsName ){
sqlite3_vfs *pVfs = sqlite3_vfs_find(g.zVfsName);
if( pVfs ){
|
| ︙ | ︙ |