Diff
Not logged in

Differences From:

File tools/cvs2fossil/lib/c2f_pfiltersym.tcl part of check-in [6809145eb1] - More comments on sql statements. by aku on 2008-01-19 06:07:49. [view]

To:

File tools/cvs2fossil/lib/c2f_pfiltersym.tcl part of check-in [83d75a6c23] - Modified filtering pass to drop the blobs of excluded revisions, for them we can be sure that we will not need them later, as whole branches are dropped. Modified the file import to use the new blob information to setup the expansion graph. This fixes the trouble we had with archive files in bwidget. They are now properly expanded. by aku on 2008-02-03 00:45:57. [view]

@@ -215,8 +215,9 @@
 	    DELETE FROM branch   WHERE sid IN excludedsymbols;
 
 	    DELETE FROM revisionbranchchildren WHERE rid  IN excludedrevisions;
 	    DELETE FROM revisionbranchchildren WHERE brid IN excludedrevisions;
+	    DELETE FROM blob                   WHERE rid  IN excludedrevisions;
 
 	    DROP TABLE excludedrevisions;
 	    DROP TABLE excludedsymbols;
 	}