Fossil

Check-in [917f1c21]
Login

Many hyperlinks are disabled.
Use anonymous login to enable hyperlinks.

Overview
Comment:Improvement to the pivot-finder so that it works even if there are time-warps in the graph.
Downloads: Tarball | ZIP archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA3-256: 917f1c21e52a299048c78491147a53d405f65b39a56e86f600cd1c63dc0b9171
User & Date: drh 2018-05-31 15:21:11.510
References
2018-06-05
23:06
Fix a bug in the pivot-finder introduced by check-in [917f1c21e52a29904] from 5 days ago. ... (check-in: 83789c6e user: drh tags: trunk)
Context
2018-06-01
20:16
An off-mailing-list patch which fixes the lack of deleted files from /json/timeline/checkin's file list. Thanks to Edgardo Cruz for tracking this down. ... (check-in: cd55efe7 user: stephan tags: trunk)
2018-05-31
15:21
Improvement to the pivot-finder so that it works even if there are time-warps in the graph. ... (check-in: 917f1c21 user: drh tags: trunk)
14:40
Fix the merge pivot finder so that it honors time-warp fixes. ... (check-in: cf6fa2f3 user: drh tags: trunk)
Changes
Unified Diff Ignore Whitespace Patch
Changes to src/pivot.c.
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
  db_prepare(&u1,
    "UPDATE aqueue SET pending=0 WHERE rid=:rid"
  );

  /* Add to the queue all ancestors of :rid.
  */
  db_prepare(&i1,
    "INSERT OR IGNORE INTO aqueue "
    "SELECT plink.pid,"
    "       coalesce((SELECT mtime FROM event X WHERE X.objid=plink.pid), 0.0),"
    "       1,"
    "       aqueue.src "
    "  FROM plink, aqueue"
    " WHERE plink.cid=:rid"
    "   AND aqueue.rid=:rid %s",







|







116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
  db_prepare(&u1,
    "UPDATE aqueue SET pending=0 WHERE rid=:rid"
  );

  /* Add to the queue all ancestors of :rid.
  */
  db_prepare(&i1,
    "REPLACE INTO aqueue "
    "SELECT plink.pid,"
    "       coalesce((SELECT mtime FROM event X WHERE X.objid=plink.pid), 0.0),"
    "       1,"
    "       aqueue.src "
    "  FROM plink, aqueue"
    " WHERE plink.cid=:rid"
    "   AND aqueue.rid=:rid %s",