Check-in Number:
|
5669 | |
Date: |
2006-Nov-20 21:00:52 (local)
2006-Nov-20 20:00:52 (UTC) |
User: | rse |
Branch: | |
Comment: |
Fix PostgreSQL bindings by mapping the correct DSO symbol
to the functions "uuid_send" and "uuid_recv". |
Tickets: |
#126 | |
Patches for PostgreSQL 8.2 and Mac OS X |
|
Inspections: |
|
Files: |
|
ossp-pkg/uuid/ChangeLog 1.138 -> 1.139
--- ChangeLog 2006/11/20 19:58:22 1.138
+++ ChangeLog 2006/11/20 20:00:52 1.139
@@ -13,6 +13,10 @@
Changes between 1.5.1 and 1.6.0 (31-Jul-2006 to 05-Oct-2006)
+ o Fix PostgreSQL bindings by mapping the correct DSO symbol
+ to the functions "uuid_send" and "uuid_recv".
+ [Ralf S. Engelschall]
+
o Silence PostgreSQL processing messages
[David Wheeler <david@kineticode.com>]
|
|
ossp-pkg/uuid/pgsql/uuid.sql.in 1.6 -> 1.7
--- uuid.sql.in 2006/11/20 19:58:22 1.6
+++ uuid.sql.in 2006/11/20 20:00:52 1.7
@@ -83,12 +83,12 @@
CREATE FUNCTION
uuid_recv(INTERNAL) RETURNS uuid
STRICT
- LANGUAGE C AS 'MODULE_PATHNAME', 'pg_uuid_in';
+ LANGUAGE C AS 'MODULE_PATHNAME', 'pg_uuid_recv';
CREATE FUNCTION
uuid_send(uuid) RETURNS BYTEA
STRICT
- LANGUAGE C AS 'MODULE_PATHNAME', 'pg_uuid_out';
+ LANGUAGE C AS 'MODULE_PATHNAME', 'pg_uuid_send';
CREATE TYPE uuid (
INPUT = uuid_in, -- for SQL input
|
|