Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Fix an broken link in the compile.in document. |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
21e4585531ad15a74b927b4067c12b4e |
User & Date: | drh 2011-03-30 19:11:29.230 |
Context
2011-04-05
| ||
14:31 | Updates to the ANALYZE and FTS4 documentation to describe the latest changes. Updates to the changes.html file as we move closer to the 3.7.6 release. Added amalgamation32k to the download.html page. (check-in: 4fb953fec0 user: drh tags: trunk) | |
2011-03-30
| ||
19:11 | Fix an broken link in the compile.in document. (check-in: 21e4585531 user: drh tags: trunk) | |
2011-03-29
| ||
16:02 | Fix a typo in an error message for althttpd.c. (check-in: 67ea9276f4 user: drh tags: trunk) | |
Changes
Changes to pages/compile.in.
︙ | ︙ | |||
864 865 866 867 868 869 870 | and operates on a table with no triggers, an optimization occurs that causes the DELETE to occur by dropping and recreating the table. Dropping and recreating a table is usually much faster than deleting the table content row by row. This is the "truncate optimization". } COMPILE_OPTION {SQLITE_OMIT_UNIQUE_ENFORCEMENT} { | | | 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 | and operates on a table with no triggers, an optimization occurs that causes the DELETE to occur by dropping and recreating the table. Dropping and recreating a table is usually much faster than deleting the table content row by row. This is the "truncate optimization". } COMPILE_OPTION {SQLITE_OMIT_UNIQUE_ENFORCEMENT} { This macro is used to omit support for enforcing UNIQUE constraints. Unique onstraints may still be defined, and all code and optimizations function as if they are enforced, however, the OP_IsUnique VDBE opcode is not generated. This may be useful for users who can guarantee uniqueness of inputs, or have other means of enforcing the constraint. See also [SQLITE_OMIT_CHECK], [EXPLAIN]. } |
︙ | ︙ |