Re: [HACKERS] VACUUM ANALYZE problem on linux
Oleg Broytmann <phd@sun.med.ru>
From: Oleg Broytmann <phd@sun.med.ru>
To: Tom Lane <tgl@sss.pgh.pa.us>
Cc: PostgreSQL-development <pgsql-hackers@postgreSQL.org>
Date: 1999-03-15T15:51:32Z
Lists: pgsql-hackers
On Mon, 15 Mar 1999, Tom Lane wrote:
> Sure looks like strcoll is broken on your platform. Build a little test
> program and see if strcoll("", "") coredumps ... if the traceback is
> accurate, that's what was getting passed to it.
#include <stdio.h>
#include <string.h>
int main()
{
printf("strcoll: %d\n", strcoll("", ""));
return 0;
}
prints: "strcoll: 0". No core.
> regards, tom lane
>
Oleg.
----
Oleg Broytmann http://members.xoom.com/phd2/ phd2@earthling.net
Programmers don't die, they just GOSUB without RETURN.