Differences From Artifact [9d53c57393]:
- File src/search.c — part of check-in [bbbb35a3c6] at 2010-12-19 02:09:28 on branch trunk — Clear compiler warnings on OpenBSD. No functional code changes. (user: drh size: 5531) [more...]
To Artifact [f1190efdee]:
- File src/search.c — part of check-in [b14ab41ff8] at 2011-08-19 23:27:14 on branch venks-emacs — Add a -showfiles flag to timeline. fossil ... -showfiles will now print a list of files after the checkin comment, like the "Show Files" button in the Web GUI. The format of the printed lines is the same as update. (user: venkat size: 5534) [more...]
| ︙ | ︙ | |||
201 202 203 204 205 206 207 |
);
iBest = db_int(0, "SELECT max(x) FROM srch");
db_prepare(&q,
"SELECT rid, uuid, date, comment, 0, 0 FROM srch"
" WHERE x>%d ORDER BY x DESC, date DESC",
iBest/3
);
| | | 201 202 203 204 205 206 207 208 209 210 |
);
iBest = db_int(0, "SELECT max(x) FROM srch");
db_prepare(&q,
"SELECT rid, uuid, date, comment, 0, 0 FROM srch"
" WHERE x>%d ORDER BY x DESC, date DESC",
iBest/3
);
print_timeline(&q, 1000, 0);
db_finalize(&q);
}
|