Differences From:
File
tools/cvs2fossil/lib/c2f_pcollrev.tcl
part of check-in
[aa04ac9d10]
- Extended the collection of revisions for a file with a separate blob store to manage the text ranges of revisions and their dependencies separate from the revisions. This will be used later (upcoming) to properly expand a file even if revisions were removed as irrelevant during the collection and filter passes.
by
aku on
2008-02-03 00:04:37.
[view]
To:
File
tools/cvs2fossil/lib/c2f_pcollrev.tcl
part of check-in
[3e76f2a5f0]
- Removed the now obsolete textrange information from the revision table and updated the file revision code to not store its textrange any longer.
by
aku on
2008-02-03 01:33:45.
[view]
@@ -132,17 +132,14 @@
-- was entered, its state, operation (= type/class), text
-- content, and meta data (author, log message, branch,
-- project). The last is encoded as single id, see table
-- 'meta'. The date/time is given in seconds since the
- -- epoch, for easy comparison. The text content is an
- -- (offset,length) pair into the rcs archive.
+ -- epoch, for easy comparison.
op INTEGER NOT NULL REFERENCES optype,
date INTEGER NOT NULL,
state TEXT NOT NULL,
mid INTEGER NOT NULL REFERENCES meta,
- coff INTEGER NOT NULL,
- clen INTEGER NOT NULL,
UNIQUE (fid, rev) -- The DTN is unique within the revision's file.
}