kmra...@rockwellcollins.com writes: > What I don't know is if the revprop SQLite db in 1.7 > is essential to the operation of the repo.
Yes. > If it can't > be deleted and recreated like the rep-cache.db file above, I would > consider it a single point of failure for the entire fsfs repository. > That new single point of failure would make me uneasy about > enabling revprop packing in 1.7... You can copy a revprop.db from an empty repository and then populate it: for i in $(seq 0 $(svnlook youngest repo)) ; do sqlite3 repo/db/revprops/revprops.db "insert into revprop values ($i, '()'" done You lose all revprops including svn:date, svn:log, etc. -- Philip