Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
| Comment: | Correct code for style, no change in functionality. |
|---|---|
| Downloads: | Tarball | ZIP archive |
| Timelines: | family | ancestors | descendants | both | pending-review |
| Files: | files | file ages | folders |
| SHA1: |
654fb1f4af85db6c26380d49f527c4ef |
| User & Date: | andybradford 2015-12-03 08:57:37.120 |
Context
|
2015-12-03
| ||
| 15:41 | Improved cross-linking of clusters. ... (check-in: 24606598a7 user: drh tags: trunk) | |
| 08:57 | Correct code for style, no change in functionality. ... (Closed-Leaf check-in: 654fb1f4af user: andybradford tags: pending-review) | |
| 08:36 | Crosslink clusters so that fossil test-clusters and test-describe-artifacts will be able to identify them correctly. ... (check-in: 81bdb68764 user: andybradford tags: pending-review) | |
Changes
Changes to src/xfer.c.
| ︙ | ︙ | |||
706 707 708 709 710 711 712 |
blob_appendf(&cluster, "M %s\n", db_column_text(&q, 0));
nRow++;
if( nRow>=800 && nUncl>nRow+100 ){
md5sum_blob(&cluster, &cksum);
blob_appendf(&cluster, "Z %b\n", &cksum);
blob_reset(&cksum);
rid = content_put(&cluster);
| | | | 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 |
blob_appendf(&cluster, "M %s\n", db_column_text(&q, 0));
nRow++;
if( nRow>=800 && nUncl>nRow+100 ){
md5sum_blob(&cluster, &cksum);
blob_appendf(&cluster, "Z %b\n", &cksum);
blob_reset(&cksum);
rid = content_put(&cluster);
manifest_crosslink(rid, &cluster, MC_NONE);
blob_reset(&cluster);
nUncl -= nRow;
nRow = 0;
blob_append_sql(&deleteWhere, ",%d", rid);
}
}
db_finalize(&q);
db_multi_exec(
"DELETE FROM unclustered WHERE rid NOT IN (0 %s)"
" AND NOT EXISTS(SELECT 1 FROM phantom WHERE rid=unclustered.rid)",
blob_sql_text(&deleteWhere)
);
blob_reset(&deleteWhere);
if( nRow>0 ){
md5sum_blob(&cluster, &cksum);
blob_appendf(&cluster, "Z %b\n", &cksum);
blob_reset(&cksum);
rid = content_put(&cluster);
manifest_crosslink(rid, &cluster, MC_NONE);
blob_reset(&cluster);
}
}
}
/*
** Send igot messages for every private artifact
|
| ︙ | ︙ |