Differences From Artifact [704b3e9772]:
- File src/report.c — part of check-in [df5201950e] at 2020-05-27 22:14:14 on branch uuid-to-hash — Updated all user-facing documentation and "fossil help" output (plus select internal comments and function names) to use "hash" rather than "UUID". No functional changes. (Yet?) See forum thread https://www.fossil-scm.org/forum/forumpost/ddc14c6866 for discussion. (user: wyoung size: 36186) [more...]
To Artifact [579be7bf0c]:
- File src/report.c — part of check-in [648396c9c1] at 2020-06-11 13:43:34 on branch trunk — Allow using the "backlink" table in ticket reports. (user: drh size: 36207)
| ︙ | ︙ | |||
191 192 193 194 195 196 197 198 199 200 201 202 203 204 |
"filename",
"mlink",
"plink",
"event",
"tag",
"tagxref",
"unversioned",
};
int i;
if( zArg1==0 ){
/* Some legacy versions of SQLite will sometimes send spurious
** READ authorizations that have no table name. These can be
** ignored. */
rc = SQLITE_IGNORE;
| > | 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 |
"filename",
"mlink",
"plink",
"event",
"tag",
"tagxref",
"unversioned",
"backlink",
};
int i;
if( zArg1==0 ){
/* Some legacy versions of SQLite will sometimes send spurious
** READ authorizations that have no table name. These can be
** ignored. */
rc = SQLITE_IGNORE;
|
| ︙ | ︙ |