Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Fix typo in SQLITE_USE_ALLOCA documentation. |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA3-256: |
5a6f07e675ca555799b9c07c3816ed3a |
User & Date: | drh 2020-05-23 02:05:22.950 |
Context
2020-05-24
| ||
23:50 | Updates to the speed-and-size chart. (check-in: 22f0b93b75 user: drh tags: trunk) | |
2020-05-23
| ||
02:05 | Fix typo in SQLITE_USE_ALLOCA documentation. (check-in: 5a6f07e675 user: drh tags: trunk) | |
02:01 | Typo: iff() should be iif(). (check-in: 93257a1a8d user: drh tags: trunk) | |
Changes
Changes to pages/compile.in.
︙ | ︙ | |||
1287 1288 1289 1290 1291 1292 1293 | COMPILE_OPTION {SQLITE_SOUNDEX} { This option enables the [soundex() SQL function]. } COMPILE_OPTION {SQLITE_USE_ALLOCA} { If this option is enabled, then the alloca() memory allocator will be used in a few situations where it is appropriate. This results in a slightly | | | 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 | COMPILE_OPTION {SQLITE_SOUNDEX} { This option enables the [soundex() SQL function]. } COMPILE_OPTION {SQLITE_USE_ALLOCA} { If this option is enabled, then the alloca() memory allocator will be used in a few situations where it is appropriate. This results in a slightly smaller and faster binary. The SQLITE_USE_ALLOCA compile-time only works, of course, on systems that support alloca(). } COMPILE_OPTION {SQLITE_USE_FCNTL_TRACE} { This option causes SQLite to issue extra [SQLITE_FCNTL_TRACE] file controls to provide supplementary information to the VFS. The "vfslog.c" extension makes use of this to provide enhanced logs of VFS activity. |
︙ | ︙ |