The SVN book describes deltification as "each time a new version of a file is committed to the repository, Subversion encodes the previous version (actually, several previous versions) as a delta against the new version."
This collab.net blog article says that "In BDB (Berkeley Database) fulltexts are found at the tips of each distinct line of a file's history." while "FSFS stores deltas in the opposite direction so that old versions never need to be rewritten."
If this is true, will SVN (using BDB) store a full copy of a file at the HEAD of each branch and then eliminate one copy of the file if the branches are merged?