Re: I know installation questions are boring ... - Mailing list pgsql-general

From Peter Eisentraut
Subject Re: I know installation questions are boring ...
Date
Msg-id Pine.LNX.4.21.0011171749540.789-100000@peter.localdomain
Whole thread Raw
In response to Re: I know installation questions are boring ...  (Tom Lane <tgl@sss.pgh.pa.us>)
Responses Re: I know installation questions are boring ...  (Tom Lane <tgl@sss.pgh.pa.us>)
List pgsql-general
Tom Lane writes:

> PG_VERSION should contain the 4 bytes "7.0\n".  The initdb script
> creates it in what may be too simplistic a fashion:
>
>     echo $version > "$PGDATA/PG_VERSION"

No, remember that this is new for 7.1.  7.0 uses

sprintf(version, "%s.%s\n", PG_RELEASE, PG_VERSION);
fd = open(full_path, O_WRONLY | O_CREAT | O_EXCL | O_BINARY, 0666);
write(fd, version, strlen(version));

which should not cause newline foul-ups.

> Of course this just begs the question of why it works for some people
> on NT and not others.  Is this a difference across cygwin releases,
> perhaps?

My understanding is that this is settable by mount-point, so the confusion
is practically unsurmountable.

--
Peter Eisentraut      peter_e@gmx.net       http://yi.org/peter-e/


pgsql-general by date:

Previous
From: Rich Shepard
Date:
Subject: Re: Strange problem upgrading to 7.0.3x
Next
From: Tom Lane
Date:
Subject: Re: I know installation questions are boring ...