From: | Andreas Kretzer <andi(at)kretzer-berlin(dot)de> |
---|---|
To: | pgsql-bugs(at)postgresql(dot)org |
Subject: | Handling large Objects with Tcl/Tk |
Date: | 2001-11-30 15:26:23 |
Message-ID: | 3C07A51F.3450129@kretzer-berlin.de |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Thread: | |
Lists: | pgsql-bugs |
Hi everyone!
While having problems with large objects I discovered
a faulty implementation of the 'rw' parameter for
pg_lo_open.
in the file
src/interfaces/libpgtcl/pgtclCmds.c
the second letter of this parameter is incorporated
into the mode variable by _ANDING_ another value
(INV_READ / INV_WRITE respectively). This of course
will _always_ lead to a zero value.
You better write
mode |= INV_READ;
and
mode |= INV_WRITE;
This bug is still in the 7.2 beta 3 version!
And now a little question (I know this is no forum,
just the bug report!):
Where can I post a question regarding handling
of large objects ??? I still have a probleme there!
Hope you can help with short e-mail.
Andreas
From | Date | Subject | |
---|---|---|---|
Next Message | Mike Smialek | 2001-11-30 16:23:02 | case sensititvity bug in foreign keys on cygwin |
Previous Message | Tom Lane | 2001-11-30 15:01:07 | Re: Vá: Va: [BUGS] Va: [BUGS] Bug #519: Bug in order b y clausule |