Do I have any twitter.com followers? I'd like to get control of twitter.com/pgcon, since I run pgcon...
I'm looking for a bit of assistance from a undernet IRC node operator please. I would like a cloaked hostname. Seems I'm attracting a bit of attention.
10 most recent commits
FreshPorts has everything you want to know about FreeBSD software, ports, packages,
applications, whatever term you want to use.
A port is marked as new for 10 days. If you want to see more try here.
Fri, 10 Sep 2010
[ 05:37 pgollucci ] weechat-devel 20100908irc A lightweight and user friendly ncurse based IRC client
[ 05:18 pgollucci ] py-pyPgSQL 2.5.1_4databases A Python DB-API 2 compliant library for using PostgreSQL databases
PostgreSQL 8.3.1 has changed it's bytea encoding.
* in PostgreSQL 8.3.1 Release note
Make encode(bytea, 'escape') convert all high-bit-set byte values into \nnn
octal escape sequences (Tom)
This is necessary to avoid encoding problems when the database encoding is
multi-byte. This change could pose compatibility issues for applications that
are expecting specific results from encode.
but pyPgSQL escape bytea encode as it's own implementments. PostgreSQL says that
it may make failure(see PQescapeBytea documentation).
in PQescapeBytea function documentation:
"The only difference from PQescapeByteaConn is that PQescapeBytea does not take
a PGconn parameter. Because of this, it cannot adjust its behavior depending on
the connection properties (in particular, whether standard-conforming strings
are enabled) and therefore it might give the wrong results. Also, it has no way
to return an error message on failure."
Patch is included upstream already
PR: ports/122616
Submitted by: "Choe, Cheng-Dae" <whitekid@gmail.com>