From: | Peter Eisentraut <peter_e(at)gmx(dot)net> |
---|---|
To: | Oliver Elphick <olly(at)lfix(dot)co(dot)uk> |
Cc: | Hannu Krosing <hannu(at)tm(dot)ee>, "Matthew T(dot) O'Connor" <matthew(at)zeut(dot)net>, Bruce Momjian <pgman(at)candle(dot)pha(dot)pa(dot)us>, Lamar Owen <lamar(dot)owen(at)wgcr(dot)org>, Jan Wieck <JanWieck(at)Yahoo(dot)com>, Christopher Kings-Lynne <chriskl(at)familyhealth(dot)com(dot)au>, HACKERS <pgsql-hackers(at)postgresql(dot)org> |
Subject: | Re: (A) native Windows port |
Date: | 2002-07-09 22:20:21 |
Message-ID: | Pine.LNX.4.44.0207091925520.1247-100000@localhost.localdomain |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Thread: | |
Lists: | pgsql-general pgsql-hackers |
Oliver Elphick writes:
> I never have understood why the basic table structure changes so much
> that it can't be read; just what is involved in getting the ability to
> read old versions?
The problem in an extensible system such as PostgreSQL is that virtually
every feature change is reflected by a change in the structure of the
system catalogs. It wouldn't be such a terribly big problem in theory to
make the backend handle these changes, but you'd end up with a huge bunch
of
if (dataVersion == 1)
do this;
else if (dataVersion == 2)
do that;
...
which would become slow and unwieldy, and would scare away developers.
That would of course be a self-serving scheme, because if the development
progress slowed down, you would have to update less frequently.
--
Peter Eisentraut peter_e(at)gmx(dot)net
From | Date | Subject | |
---|---|---|---|
Next Message | Chris Albertson | 2002-07-09 22:47:42 | Re: RelationClearRelation: relation X deleted while still in use??? |
Previous Message | Tom Lane | 2002-07-09 22:10:37 | Re: RelationClearRelation: relation X deleted while still in use??? |
From | Date | Subject | |
---|---|---|---|
Next Message | Peter Eisentraut | 2002-07-09 22:20:54 | Re: Proposal: CREATE CONVERSION |
Previous Message | Peter Eisentraut | 2002-07-09 22:18:16 | Unintegrated stuff in source tree |