package VCP::FilesDB; =head1 NAME VCP::FilesDB - Persistant storage for path -> state =head1 SYNOPSIS use base qw( VCP::FilesDB ); =head1 DESCRIPTION VCP::Dest::cvs needs to record what it's seen for each file as its seen it so that it can decide whether a file is new or not. =for test_script t/01revmapdb.t =cut $VERSION = 1 ; @ISA = qw( VCP::DB ); use strict ; use VCP::DB; #use base "VCP::DB"; sub new { shift->SUPER::new( TableName => "dest_files", @_ ); } =head1 AUTHOR Barrie Slaymaker <barries@slaysys.com> =head1 COPYRIGHT Copyright (c) 2000, 2001, 2002 Perforce Software, Inc. All rights reserved. See L<VCP::License|VCP::License> (C<vcp help license>) for the terms of use. =cut 1
# | Change | User | Description | Committed | |
---|---|---|---|---|---|
#1 | 6119 | Dimitry Andric | Create branch from //public/revml, changelist 5088, since I originally started making changes to this version. | ||
//guest/perforce_software/revml/lib/VCP/FilesDB.pm | |||||
#4 | 4022 | Barrie Slaymaker | - Straggling phash eradication | ||
#3 | 4021 | Barrie Slaymaker |
- Remove all phashes and all base & fields pragmas - Work around SWASHGET error |
||
#2 | 2926 | John Fetkovich |
remove --state-location switch add --db-dir and --repo-id switches build state location from concatenation of those two. |
||
#1 | 2901 | Barrie Slaymaker |
Make VCP::Dest::cvs use more persistant state to handle boundary conditions better. |