329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
|
if( db_exists("SELECT 1 FROM delta WHERE srcId IN phantom") ){
if( db_get_int("aux-clone-seqno",0)==0 ){
fossil_fatal("there are unresolved deltas -"
" the clone is probabaly incomplete and unusable.");
}
}
if( db_get_int("aux-clone-seqno",0)>0 ){
fossil_warning("Clone incomplete - it may be possible to resume the"
" clone by running the same command again.");
}else{
fossil_print("Rebuilding repository meta-data...\n");
rebuild_db(1, 0);
if( !noCompress ){
int nDelta = 0;
i64 nByte;
|
|
|
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
|
if( db_exists("SELECT 1 FROM delta WHERE srcId IN phantom") ){
if( db_get_int("aux-clone-seqno",0)==0 ){
fossil_fatal("there are unresolved deltas -"
" the clone is probabaly incomplete and unusable.");
}
}
if( db_get_int("aux-clone-seqno",0)>0 ){
fossil_warning("It may be possible to resume the"
" clone by running the same command again.");
}else{
fossil_print("Rebuilding repository meta-data...\n");
rebuild_db(1, 0);
if( !noCompress ){
int nDelta = 0;
i64 nByte;
|