python - be: Improve bytea accessors.

From: jwp(at)pgfoundry(dot)org (James William Pye)
To: pgsql-committers(at)postgresql(dot)org
Subject: python - be: Improve bytea accessors.
Date: 2005-12-01 19:26:46
Message-ID: 20051201192646.0A96B112500B@pgfoundry.org
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-committers

Log Message:
-----------
Improve bytea accessors.

Primarily, do not assume the Datum is not toasted. Use byteaoctetlen for length
and DatumGetByteaPSlice() for slicing.

(str() should probably return a raw string of the bytea instead of the typoutput
as slicing now returns byteas instead Python StringType. do later, tho)

Modified Files:
--------------
be/src/type:
bitwise.c (r1.6 -> r1.7)
(http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/python/be/src/type/bitwise.c.diff?r1=1.6&r2=1.7)

Browse pgsql-committers by date

  From Date Subject
Next Message Bruce Momjian 2005-12-01 20:06:37 pgsql: Add comments about why errno is set to zero.
Previous Message Tom Lane 2005-12-01 17:57:08 pgsql: Check for overflow in strtol() while parsing datetime inputs.