The following bug has been logged online:
Bug reference: 5108
Logged by: Balazs Klein
Email address: balazs.kl...@gmail.com
PostgreSQL version: 8.4.1
Operating system: Windows XP
Description:plpgsql function name conflict with table alias
Details:
I have a plpgsql f
"Balazs Klein" writes:
> On 8.4.1 on windows XP running the function gives an error message
> (Undefined column: 7 ERROR: record "rec" has no field "instreq_id") wich is
> strange because the underlying query does return that column.
There's really no way to investigate that without a *complete*
The following bug has been logged online:
Bug reference: 5109
Logged by: Federico
Email address: federicoaagui...@gmail.com
PostgreSQL version: 8.4
Operating system: Open SuSE 11.1 64-Bit
Description:Error installing edb_apachephp.bin
Details:
Hello, when i'm instal
Hi,
the test case below runs fine for me if the function name is not instreq and
returns an error if it is.
Regards.
Balazs
CREATE TABLE aaa (
instreq_id integer
);
INSERT INTO aaa (instreq_id) VALUES (223);
INSERT INTO aaa (instreq_id) VALUES (224);
INSERT INTO aaa (instreq_id) VALUES (2
Hello pgsql-bugs,
While trying to connect our PostgreSQL database to our Kerberos realm, we
encountered the obscure message "Invalid message length". Tracking this down,
we discovered that it was emitted by src/backend/libpq/pqcomm.c in response to
a rather large Kerberos message. The root caus
Balazs Klein writes:
> CREATE OR REPLACE FUNCTION instreq(OUT instreq_id integer)
> ...
> Select instreq.instreq_id From aaa instreq
The problem that you've got here is that instreq.instreq_id is in fact
a qualified reference to the function's OUT parameter. We didn't
support qualification of fu