Re: PostgreSQL Developer meeting minutes up

From: "Markus Wanner" <markus(at)bluegap(dot)ch>
To: "Marc G(dot) Fournier" <scrappy(at)hub(dot)org>
Cc: "Kevin Grittner" <Kevin(dot)Grittner(at)wicourts(dot)gov>, "Peter Eisentraut" <peter_e(at)gmx(dot)net>, pgsql-hackers(at)postgresql(dot)org, "Andrew Dunstan" <andrew(at)dunslane(dot)net>, "Aidan Van Dyk" <aidan(at)highrise(dot)ca>, "Tom Lane" <tgl(at)sss(dot)pgh(dot)pa(dot)us>
Subject: Re: PostgreSQL Developer meeting minutes up
Date: 2009-05-28 07:25:18
Message-ID: 20090528092518.19705813rymuy3j2@mail.bluegap.ch
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-hackers

Hi,

Quoting "Marc G. Fournier" <scrappy(at)hub(dot)org>:
> Actually, I have done that on at least one of the 8.x tags too, so
> if that is it, more then those two tags should be causing issues ...

Not *every* such issue causes problems. An example that's perfectly fine:

cvs commit -m "first commit" fileA
cvs tag TEST filA
cvs commit -m "second commit" fileB
cvs tag TEST fileB

In such a situation, a converter can easily "push-down" the tag TEST
to the second commit, because fileA is the same (in that revision) as
after the first commit. After all, the results in the RCS files are
exactly the same as if you did the following:

cvs commit -m "first commit" fileA
cvs commit -m "second commit" fileB
cvs tag TEST fileA fileB

A converter can't possibly distinguish these two.

However, if both files get committed the second time, but only one
gets tagged, it gets problematic (always assuming the commit actually
changes the file):

cvs commit -m "first commit" fileA
cvs tag TEST filA
cvs commit -m "second commit" fileA fileB
cvs tag TEST fileB

That's perfectly valid from CVS's point of view, unwanted for the
Postgres repository and hard to handle for a converter to git (or
mercurial, monotone, etc..), because the tag TEST is on the first
commit for fileA but on the second for fileB, while both of fileA and
fileB differ between the commits.

Regards

Markus Wanner

In response to

Browse pgsql-hackers by date

  From Date Subject
Next Message Dimitri Fontaine 2009-05-28 07:36:44 Re: search_path vs extensions
Previous Message Simon Riggs 2009-05-28 07:17:41 Re: survey of WAL blocksize changes