Time for RC1 soon?
We are putting out beta3 today or tomorrow. It seems we are ready to
start considering an RC1 date, perhaps next Friday, November 1?
---------------------------------------------------------------------------
P O S T G R E S Q L
7 . 3 O P E N I T E M S
Current at ftp://momjian.postgresql.org/pub/postgresql/open_items.
Required Changes
-------------------
Optional Changes
----------------
Fix Linux + Perl 5.8.1 + _GNU_SOURCE problem
Fix AIX + Large File + Flex problem
Documentation Changes
---------------------
--
Bruce Momjian | http://candle.pha.pa.us
pgman@candle.pha.pa.us | (610) 359-1001
+ If your life is a hard drive, | 13 Roberts Road
+ Christ can be your backup. | Newtown Square, Pennsylvania 19073
Bruce Momjian <pgman@candle.pha.pa.us> writes:
We are putting out beta3 today or tomorrow. It seems we are ready to
start considering an RC1 date, perhaps next Friday, November 1?
Seems like someone ought to issue a call for port reports. The
"supported platforms" list hasn't been touched ...
regards, tom lane
Tom Lane wrote:
Bruce Momjian <pgman@candle.pha.pa.us> writes:
We are putting out beta3 today or tomorrow. It seems we are ready to
start considering an RC1 date, perhaps next Friday, November 1?Seems like someone ought to issue a call for port reports. The
"supported platforms" list hasn't been touched ...
Good point. Thomas, can you take that on?
--
Bruce Momjian | http://candle.pha.pa.us
pgman@candle.pha.pa.us | (610) 359-1001
+ If your life is a hard drive, | 13 Roberts Road
+ Christ can be your backup. | Newtown Square, Pennsylvania 19073
Seems like someone ought to issue a call for port reports. The
"supported platforms" list hasn't been touched ...Good point. Thomas, can you take that on?
No, at least not now. I'm not able to communicate reliably with the
mailing lists, and so can not coordinate anything :( Not sure when or if
that will be resolved, but I'll be out of town next week so...
- Thomas
... and just out of curiosity, why does Bruce's message have a [HACKERS]
tag in the subject line but my reply does not? It seems to be going
through the same mailer but with different results...
- Thomas
Thomas Lockhart wrote:
... and just out of curiosity, why does Bruce's message have a [HACKERS]
tag in the subject line but my reply does not? It seems to be going
through the same mailer but with different results...
Yes, I have noticed this happening at random times.
--
Bruce Momjian | http://candle.pha.pa.us
pgman@candle.pha.pa.us | (610) 359-1001
+ If your life is a hard drive, | 13 Roberts Road
+ Christ can be your backup. | Newtown Square, Pennsylvania 19073
Thomas Lockhart wrote:
Seems like someone ought to issue a call for port reports. The
"supported platforms" list hasn't been touched ...Good point. Thomas, can you take that on?
No, at least not now. I'm not able to communicate reliably with the
mailing lists, and so can not coordinate anything :( Not sure when or if
that will be resolved, but I'll be out of town next week so...
OK, Tom will be away next week, and Thomas will too. I can do it.
Folks. start sending in those plaform reports, OS name and version
number please.
The current platform list is:
http://developer.postgresql.org/docs/postgres/supported-platforms.html
--
Bruce Momjian | http://candle.pha.pa.us
pgman@candle.pha.pa.us | (610) 359-1001
+ If your life is a hard drive, | 13 Roberts Road
+ Christ can be your backup. | Newtown Square, Pennsylvania 19073
Thomas Lockhart wrote:
Seems like someone ought to issue a call for port reports. The
"supported platforms" list hasn't been touched ...Good point. Thomas, can you take that on?
No, at least not now. I'm not able to communicate reliably with the
mailing lists, and so can not coordinate anything :( Not sure when or if
that will be resolved, but I'll be out of town next week so...
[ Reposted with proper subject line.]
OK, Tom will be away next week, and Thomas will too. I can do it.
Folks. start sending in those plaform reports, OS name and version
number please.
The current platform list is:
http://developer.postgresql.org/docs/postgres/supported-platforms.html
--
Bruce Momjian | http://candle.pha.pa.us
pgman@candle.pha.pa.us | (610) 359-1001
+ If your life is a hard drive, | 13 Roberts Road
+ Christ can be your backup. | Newtown Square, Pennsylvania 19073
Bruce Momjian <pgman@candle.pha.pa.us> writes:
Folks. start sending in those plaform reports, OS name and version
number please.
I've checked CVS tip on:
HPUX 10.20, using both gcc and vendor's cc
PPC Linux
Mac OS X 10.1
regards, tom lane
Tom Lane <tgl@sss.pgh.pa.us> writes:
Bruce Momjian <pgman@candle.pha.pa.us> writes:
Folks. start sending in those plaform reports, OS name and version
number please.I've checked CVS tip on:
HPUX 10.20, using both gcc and vendor's cc
PPC Linux
Mac OS X 10.1
I get the following on Linux/Sparc, Debian 3.0:
make[3]: Entering directory `/home/doug/src/pgsql/src/backend/utils/mb/conversion_procs/ascii_and_mic'
gcc -O2 -Wall -Wmissing-prototypes -Wmissing-declarations -fpic
-I../../../../../../src/include -c -o ascii_and_mic.o
ascii_and_mic.c
ascii_and_mic.c:19: syntax error before `extern'
ascii_and_mic.c:21: syntax error before `extern'
make[3]: *** [ascii_and_mic.o] Error 1
make[3]: Leaving directory `/home/doug/src/pgsql/src/backend/utils/mb/conversion_procs/ascii_and_mic'
make[2]: *** [all] Error 2
make[2]: Leaving directory `/home/doug/src/pgsql/src/backend/utils/mb/conversion_procs'
make[1]: *** [all] Error 2
make[1]: Leaving directory `/home/doug/src/pgsql/src'
make: *** [all] Error 2
My gcc version:
doug@varsoon:~/src/pgsql$ gcc -v
Reading specs from /usr/lib/gcc-lib/sparc-linux/2.95.4/specs
gcc version 2.95.4 20011002 (Debian prerelease)
This is CVS tip as of about 11:30 EST Saturday.
Looking into it, we have in ascii_and_mic.c:
PG_FUNCTION_INFO_V1(ascii_to_mic)
PG_FUNCTION_INFO_V1(mic_to_ascii)
Putting a semicolon after each such line fixes that compile, but there
are other files under conversion_procs with the same problem. Is my
gcc not expanding the macro properly?
-Doug
Import Notes
Reply to msg id not found: TomLanesmessageofSat26Oct2002101808-0400
Doug McNaught <doug@mcnaught.org> writes:
make[3]: Entering directory `/home/doug/src/pgsql/src/backend/utils/mb/conversion_procs/ascii_and_mic'
gcc -O2 -Wall -Wmissing-prototypes -Wmissing-declarations -fpic
-I../../../../../../src/include -c -o ascii_and_mic.o
ascii_and_mic.c
ascii_and_mic.c:19: syntax error before `extern'
ascii_and_mic.c:21: syntax error before `extern'
That should be fixed as of now.
regards, tom lane
Attachments:
Import Notes
Reply to msg id not found: TomLanesmessageofSat26Oct2002131249-0400
On 26 Oct 2002, Doug McNaught wrote:
Tom Lane <tgl@sss.pgh.pa.us> writes:
Doug McNaught <doug@mcnaught.org> writes:
make[3]: Entering directory `/home/doug/src/pgsql/src/backend/utils/mb/conversion_procs/ascii_and_mic'
gcc -O2 -Wall -Wmissing-prototypes -Wmissing-declarations -fpic
-I../../../../../../src/include -c -o ascii_and_mic.o
ascii_and_mic.c
ascii_and_mic.c:19: syntax error before `extern'
ascii_and_mic.c:21: syntax error before `extern'That should be fixed as of now.
OK, compile went fine, but I get multiple regression test failures:
test geometry ... FAILED
select_views ... FAILED
foreign_key ... FAILED
limit ... FAILED
plpgsql ... FAILED
copy2 ... FAILED
temp ... FAILED
domain ... FAILED
rangefuncs ... FAILED
prepare ... FAILED
without_oid ... FAILED
conversion ... FAILED
truncate ... FAILED
alter_table ... FAILEDI have attached a gzipped copy of "regression.diffs". Let me know if
I can supply any other help.
The geometry one looked like rounding issues.
Did you run out of space on where the data directory was mounted?
At least some of the other errors were complaining about no space
left on device.
Doug McNaught <doug@mcnaught.org> writes:
OK, compile went fine, but I get multiple regression test failures:
test geometry ... FAILED
After realizing that my disk had filled up (thanks Alvaro) I reran the
tests and 'geometry' is the only failure. I'm guessing this is due to
floating-point differences? If this is OK, then
Linux/Sparc (Debian 3.0)
is a PASS.
-Doug
Import Notes
Reply to msg id not found: DougMcNaughtsmessageof26Oct2002134010-0400
Updated:
http://candle.pha.pa.us/main/writings/pgsql/sgml/supported-platforms.html
---------------------------------------------------------------------------
Tom Lane wrote:
Bruce Momjian <pgman@candle.pha.pa.us> writes:
Folks. start sending in those plaform reports, OS name and version
number please.I've checked CVS tip on:
HPUX 10.20, using both gcc and vendor's cc
PPC Linux
Mac OS X 10.1regards, tom lane
---------------------------(end of broadcast)---------------------------
TIP 1: subscribe and unsubscribe commands go to majordomo@postgresql.org
--
Bruce Momjian | http://candle.pha.pa.us
pgman@candle.pha.pa.us | (610) 359-1001
+ If your life is a hard drive, | 13 Roberts Road
+ Christ can be your backup. | Newtown Square, Pennsylvania 19073
Updated:
http://candle.pha.pa.us/main/writings/pgsql/sgml/supported-platforms.html
---------------------------------------------------------------------------
Doug McNaught wrote:
Doug McNaught <doug@mcnaught.org> writes:
OK, compile went fine, but I get multiple regression test failures:
test geometry ... FAILED
After realizing that my disk had filled up (thanks Alvaro) I reran the
tests and 'geometry' is the only failure. I'm guessing this is due to
floating-point differences? If this is OK, thenLinux/Sparc (Debian 3.0)
is a PASS.
-Doug
--
Bruce Momjian | http://candle.pha.pa.us
pgman@candle.pha.pa.us | (610) 359-1001
+ If your life is a hard drive, | 13 Roberts Road
+ Christ can be your backup. | Newtown Square, Pennsylvania 19073
On Sat, Oct 26, 2002 at 04:01:17PM -0400, Bruce Momjian wrote:
Updated:
http://candle.pha.pa.us/main/writings/pgsql/sgml/supported-platforms.html
Linux 2.4 on IA32 passes also.
--
Alvaro Herrera (<alvherre[a]dcc.uchile.cl>)
"La felicidad no es ma�ana. La felicidad es ahora"
Ports list updated:
http://candle.pha.pa.us/main/writings/pgsql/sgml/supported-platforms.html
---------------------------------------------------------------------------
Alvaro Herrera wrote:
On Sat, Oct 26, 2002 at 04:01:17PM -0400, Bruce Momjian wrote:
Updated:
http://candle.pha.pa.us/main/writings/pgsql/sgml/supported-platforms.html
Linux 2.4 on IA32 passes also.
--
Alvaro Herrera (<alvherre[a]dcc.uchile.cl>)
"La felicidad no es ma?ana. La felicidad es ahora"
--
Bruce Momjian | http://candle.pha.pa.us
pgman@candle.pha.pa.us | (610) 359-1001
+ If your life is a hard drive, | 13 Roberts Road
+ Christ can be your backup. | Newtown Square, Pennsylvania 19073
On Fri, 25 Oct 2002, Bruce Momjian wrote:
We are putting out beta3 today or tomorrow. It seems we are ready to
start considering an RC1 date, perhaps next Friday, November 1?
tom is away for the week, so I wouldn't see anything earlier hten the week
following tha t...
Show quoted text
---------------------------------------------------------------------------
P O S T G R E S Q L
7 . 3 O P E N I T E M S
Current at ftp://momjian.postgresql.org/pub/postgresql/open_items.
Required Changes
-------------------Optional Changes
----------------
Fix Linux + Perl 5.8.1 + _GNU_SOURCE problem
Fix AIX + Large File + Flex problemDocumentation Changes
----------------------- Bruce Momjian | http://candle.pha.pa.us pgman@candle.pha.pa.us | (610) 359-1001 + If your life is a hard drive, | 13 Roberts Road + Christ can be your backup. | Newtown Square, Pennsylvania 19073---------------------------(end of broadcast)---------------------------
TIP 6: Have you searched our list archives?
On Sat, 26 Oct 2002, Thomas Lockhart wrote:
Seems like someone ought to issue a call for port reports. The
"supported platforms" list hasn't been touched ...Good point. Thomas, can you take that on?
No, at least not now. I'm not able to communicate reliably with the
mailing lists, and so can not coordinate anything :( Not sure when or if
that will be resolved, but I'll be out of town next week so...
this should be fixed now tha I've removed the UCE controls ... as for
being out of town next week, so is Tom Lane, so I don't feel tha that is a
problem ...