Re: [PATCHES] JDBC Patch

From: Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us>
To: Peter Mount <petermount(at)maidstone(dot)gov(dot)uk>
Cc: "'Bruce Momjian'" <pgman(at)candle(dot)pha(dot)pa(dot)us>, Christopher Cain <ccain(at)mhsoftware(dot)com>, pgsql-interfaces(at)postgresql(dot)org, pgsql-patches(at)postgresql(dot)org
Subject: Re: [PATCHES] JDBC Patch
Date: 2000-09-12 07:16:20
Message-ID: 6170.968742980@sss.pgh.pa.us
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-interfaces pgsql-patches

Peter Mount <petermount(at)maidstone(dot)gov(dot)uk> writes:
> Eeek, I've got this in my copy ready to commit. How is CVS going to handle
> this problem?

You'll have to "cvs update" those files and then check that the changes
were merged correctly before you commit. I believe CVS will not let
you commit a file in which there are changes since your last cvs update.

Although "cvs update" will try to merge the changes from the repository
with your local edits, my experience is that CVS is not too bright about
merging overlapping differences. I prefer to do the change merge by
hand --- move my modified files someplace else, cvs update to fetch
clean current copies, then edit to bring the files back in sync. This
process is a bit tedious, but much more reliable than CVS by itself.

Jan Wieck has posted about his preferred method, which IIRC involves
working in a complete separate copy of the source tree, and then
using "diff -c -R" to generate a summary of his changes. Then he
cvs update's his reference tree and uses "patch" to apply the
diff output to it, followed by hand cleanup of whatever merges patch
couldn't handle. This is probably a better way if you plan to do
a large pile of changes between syncs with the repository.

regards, tom lane

In response to

Browse pgsql-interfaces by date

  From Date Subject
Next Message Peter Mount 2000-09-12 07:19:33 RE: [PATCHES] JDBC Patch
Previous Message Peter Mount 2000-09-12 06:56:19 RE: [PATCHES] JDBC Patch

Browse pgsql-patches by date

  From Date Subject
Next Message Peter Mount 2000-09-12 07:19:33 RE: [PATCHES] JDBC Patch
Previous Message Peter Mount 2000-09-12 06:59:09 RE: JDBC: redundant String allocations removed