Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
| Comment: | Requires SQLite version 3.34.0 or later, due to the recursive CTE enhancement needed by /finfo. |
|---|---|
| Downloads: | Tarball | ZIP archive |
| Timelines: | family | ancestors | descendants | both | trunk |
| Files: | files | file ages | folders |
| SHA3-256: |
8813ae91a699ac7303b6321fb7c41c19 |
| User & Date: | drh 2020-10-29 16:30:30.881 |
Context
|
2020-10-29
| ||
| 19:07 | Reworked the "Clones and Backups" section of www/caps/admin-v-setup.md now that we have www/backup.md. ... (check-in: dd65d143c3 user: wyoung tags: trunk) | |
| 16:30 | Requires SQLite version 3.34.0 or later, due to the recursive CTE enhancement needed by /finfo. ... (check-in: 8813ae91a6 user: drh tags: trunk) | |
| 13:42 | Minor fix to error handling in pikchr.c. ... (check-in: 5febff257d user: drh tags: trunk) | |
Changes
Changes to src/main.c.
| ︙ | ︙ | |||
672 673 674 675 676 677 678 |
raise(SIGTRAP);
#endif
}
}
#endif
fossil_limit_memory(1);
| | | | 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 |
raise(SIGTRAP);
#endif
}
}
#endif
fossil_limit_memory(1);
if( sqlite3_libversion_number()<3034000 ){
fossil_panic("Unsuitable SQLite version %s, must be at least 3.34.0",
sqlite3_libversion());
}
sqlite3_config(SQLITE_CONFIG_MULTITHREAD);
sqlite3_config(SQLITE_CONFIG_LOG, fossil_sqlite_log, 0);
memset(&g, 0, sizeof(g));
g.now = time(0);
g.httpHeader = empty_blob;
|
| ︙ | ︙ |