Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Run PRAGMA integrity_check on the database at the end of the "test-integrity" command. |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
00bfa66e6c921cb5da73557c6c3431ee |
User & Date: | drh 2016-01-18 23:25:31.623 |
Context
2016-01-18
| ||
23:46 | Fix to the test-content-erase command so that it correctly undeltafies. ... (check-in: d0cabcb6 user: drh tags: trunk) | |
23:25 | Run PRAGMA integrity_check on the database at the end of the "test-integrity" command. ... (check-in: 00bfa66e user: drh tags: trunk) | |
23:19 | Improved "help" for the "fossil whatis" command. ... (check-in: 0f9d0f0b user: drh tags: trunk) | |
Changes
Changes to src/content.c.
︙ | ︙ | |||
951 952 953 954 955 956 957 958 959 960 961 962 963 964 | "control", "wiki", "ticket", "attachment", "event" }; int i; fossil_print("%d total control artifacts\n", nCA); for(i=1; i<count(azType); i++){ if( anCA[i] ) fossil_print(" %d %ss\n", anCA[i], azType[i]); } } } /* ** COMMAND: test-orphans ** ** Search the repository for orphaned artifacts */ | > > | 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 | "control", "wiki", "ticket", "attachment", "event" }; int i; fossil_print("%d total control artifacts\n", nCA); for(i=1; i<count(azType); i++){ if( anCA[i] ) fossil_print(" %d %ss\n", anCA[i], azType[i]); } } fossil_print("low-level database integrity-check: "); fossil_print("%s\n", db_text(0, "PRAGMA integrity_check(10)")); } /* ** COMMAND: test-orphans ** ** Search the repository for orphaned artifacts */ |
︙ | ︙ |