Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 30 Jan 2004 21:10:45 -0500
From:      "Dan Langille" <dan@langille.org>
To:        girgen@pingpong.net
Cc:        ports@freebsd.org
Subject:   databases/postgresql7 dump + restore didn't include pgcrypto functions
Message-ID:  <401AC855.2067.177977F8@localhost>

next in thread | raw e-mail | index | archive | help
Hi folks,

I upgraded two servers today from 7.3.* to 7.4.1.  In both cases, the 
pgcrypto functions were excluded.  I used pg_dumpall to create the 
output.  Examining the dump file I see this:

connect "working-copy.freshports.org"
--
-- PostgreSQL database dump
--

SET SESSION AUTHORIZATION 'dan';

SET search_path = public, pg_catalog;

--
-- TOC entry 235 (OID 19127468)
-- Name: digest (text, text); Type: FUNCTION; Schema: public; Owner: 
dan
--

CREATE FUNCTION digest (text, text) RETURNS bytea
    AS '$libdir/pgcrypto', 'pg_digest'
    LANGUAGE c;

But within that database, there is no digest function:

working-copy.freshports.org=# \df digest
                   List of functions
 Result data type | Schema | Name | Argument data types
------------------+--------+------+---------------------
(0 rows)

working-copy.freshports.org=#

The cause of the problem is illustrated by this attempt to manually 
create the functions:

freshports=# CREATE FUNCTION digest (text, text) RETURNS bytea
freshports-#     AS '$libdir/pgcrypto', 'pg_digest'
freshports-#     LANGUAGE c;
ERROR:  could not load library 
"/usr/local/lib/postgresql/pgcrypto.so": dlopen 
'/usr/local/lib/postgresql/pgcrypto.so' failed. (/us
r/local/lib/postgresql/pgcrypto.so: Undefined symbol "elog")

It appears that the libraries were removed.  Does that make sense?

I upgraded using portupgrade.  I wonder if that's why 
/usr/local/lib/postgresql was blown away....

What I had to do was recompile and install contrib/pgcrypto and then 
import the functions.

FWIW: I was using the FreeBSD port on 4.9-STABLE.
-- 
Dan Langille : http://www.langille.org/
BSDCan - http://www.bsdcan.org/



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?401AC855.2067.177977F8>