[BUGS] thread safe?

2003-11-18 Thread Theodore Petrosky
After reading the HISTORY file with the new 7.4, I happened across the thread-safe with libpq stuff. As I am using this in my OS X app I thought I would add it in. (Not that I thought that I needed it, it was more for fun..) I got the following error on configure: checking for pthread.h... yes c

[BUGS] OS X can not make check?

2003-11-18 Thread Theodore Petrosky
OS X 10.3.1 postgres 7.4 make check... make[4]: Nothing to be done for `all'. All of PostgreSQL successfully made. Ready to install. make -C src/test check make: *** src/test: No such file or directory. Stop. make: *** [check] Error 2 BTW my other message about thread safe was also OS X 10.3.1

Re: [BUGS] thread safe?

2003-11-18 Thread Bruce Momjian
Theodore Petrosky wrote: > After reading the HISTORY file with the new 7.4, I > happened across the thread-safe with libpq stuff. As I > am using this in my OS X app I thought I would add it > in. (Not that I thought that I needed it, it was more > for fun..) > > I got the following error on conf

[BUGS] Build problems for PostgreSQL v7.4 on FreeBSD v4.1

2003-11-18 Thread Richard Scranton
In file postgresql-7.4/src/interfaces/ecpg/ecpglib/misc.c, this version of FreeBSD has no definition of LONG_LONG_MIN, although it does support an int64_t integral type. Compilation was successful after inserting a definition immediately following the block of included files: /* XXX */ #define L

[BUGS] unix_socket_directory vs pg_ctl?

2003-11-18 Thread Szűcs Gábor
Dear Gurus, I *think* I found something that is at least strange, if not a bug. - cut here - Abstract: setting unix_socket_directory in postgresql.conf seems to confuse pg_ctl so that it starts postmaster but can't see it running so reports as "failed" -

[BUGS] Bug in byteaout code in all PostgreSQL versions

2003-11-18 Thread Sergey N. Yatskevich
Hello! bytea-test.cxx -- contains detailed description of the bug and test plan and code. varlena.c.diff -- patch for PostgreSQL 7.5devel src/backend/utils/adt/varlena.c#byteaout fe-exec.c.diff -- patch (optional) for PostgreSQL 7.5devel src/interface/libpq/fe-exec.c#PQescapeBytea test.data -- c

Re: [BUGS] Build problems for PostgreSQL v7.4 on FreeBSD v4.1

2003-11-18 Thread Kris Jurka
On Tue, 18 Nov 2003, Richard Scranton wrote: > In file > postgresql-7.4/src/interfaces/jdbc/org/postgresql/jdbc1/AbstractJdbc1ResultSet.java, > the JDBC version 1 driver cannot be built with JDK v1.1.8 because that > version of the Double class does not include a static parseDouble(String) > met