[BUGS] Re: g++ not working for postgresql extension languages?

2001-04-14 Thread Thomas Lockhart
> Any ideas on how to fix this so that I can use c++ functions compiled with g++ > in the PL/pgSQL extensions? To implement function overloading, g++ (and other c++ compilers) use "name mangling" to allow functions and methods with the same name but with different arguments to be handled by stand

[BUGS] g++ not working for postgresql extension languages?

2001-04-14 Thread Lonnie Cumberland
Hello, Here is something very important that I think might be a bug for you to look into as there is some aparent inconsistancies I was doing some testing before I started to write my c++ routine to extend PostgreSQL 7.03 on my Linux box and found this problem. I made two copies of the same fil

Re: [BUGS] Bug in send()

2001-04-14 Thread Tom Lane
Dennis Fleurbaaij <[EMAIL PROTECTED]> writes: > FATAL: pq_endmessage failed errno=32 > pq_flush: send() failed broken pipe As near as I can tell, this is the trace of a backend exiting after the client program ungracefully quit. If you want to argue that this is a Postgres bug then you will need

[BUGS] me bad :)

2001-04-14 Thread Dennis Fleurbaaij
Oops :) We're talking 7.1 rc4 here. --  Met vriendelijke groet, Dennis Fleurbaaij <[EMAIL PROTECTED]> Stichting CORE    http://www.core-lan.nl Tel: +31 (0)6 54 21 53 65 Fax: +31 (0)20 86 47 059  

[BUGS] Bug in send()

2001-04-14 Thread Dennis Fleurbaaij
Hi i'm developing a searchengine which uses PostgreSQL (duh:) I've fond erronuos behavour when I send a SIGTERM to my application when then query is in progress.. The send() loop will go out of control in an endless loop and that is clearly wrong. I'm not going into the source unless you say t

Re: [BUGS] Error on reference to inherited primary key

2001-04-14 Thread Stephan Szabo
On Fri, 13 Apr 2001 [EMAIL PROTECTED] wrote: > Creating tables this way: > >A has a primary key >B inherits A >C references B > > results in an error message on the CREATE TABLE for C (ERROR: PRIMARY KEY for >referenced table "b" not found). > > To reproduce: > > create table A

[BUGS] can't compile JDBC1

2001-04-14 Thread pgsql-bugs
joachim wolf ([EMAIL PROTECTED]) reports a bug with a severity of 2 The lower the number the more severe it is. Short Description can't compile JDBC1 Long Description in postgresql 7.1, compiling of JDBC1 isn't possible, syntax errors in the java source (JDBC2 works): make[3]: Entering directo

[BUGS] Homepage images do not set ALT attribute

2001-04-14 Thread pgsql-bugs
Christian Reis ([EMAIL PROTECTED]) reports a bug with a severity of 3 The lower the number the more severe it is. Short Description Homepage images do not set ALT attribute Long Description Well, the PostgreSQL.org homepage has a very pretty logo table at the top, which lays out very nicely in g

[BUGS] Error on reference to inherited primary key

2001-04-14 Thread rpijlman
Creating tables this way: A has a primary key B inherits A C references B results in an error message on the CREATE TABLE for C (ERROR: PRIMARY KEY for referenced table "b" not found). To reproduce: create table A ( id integer primary key ); create table B ( dummy i