I'm still getting conversion test failures on RH 7.2, 7.3, and Null beta. My confiugre arguments are:
./configure --prefix=/opt/postgresql --with-java --with-python --with-openssl --enable-syslog --enable-debug --enable-cassert --enable-depend It appears that the functions are not being loaded into the regression database: -- -- create user defined conversion -- CREATE USER foo WITH NOCREATEDB NOCREATEUSER; SET SESSION AUTHORIZATION foo; CREATE CONVERSION myconv FOR 'LATIN1' TO 'UNICODE' FROM iso8859_1_to_utf8; ERROR: Function iso8859_1_to_utf8 does not exist -- -- cannot make same name conversion in same schema -- CREATE CONVERSION myconv FOR 'LATIN1' TO 'UNICODE' FROM iso8859_1_to_utf8; ERROR: Function iso8859_1_to_utf8 does not exist -- -- create default conversion with qualified name -- CREATE DEFAULT CONVERSION public.mydef FOR 'LATIN1' TO 'UNICODE' FROM iso8859_1_to_utf8; ERROR: Function iso8859_1_to_utf8 does not exist -- -- cannot make default conversion with same shcema/for_encoding/to_encoding -- CREATE DEFAULT CONVERSION public.mydef2 FOR 'LATIN1' TO 'UNICODE' FROM iso8859_1_to_utf8; ERROR: Function iso8859_1_to_utf8 does not exist -- -- drop user defined conversion -- DROP CONVERSION myconv; ERROR: conversion myconv not found DROP CONVERSION mydef; ERROR: conversion mydef not found -- Gordon. -- "Far and away the best prize that life has to offer is the chance to work hard at work worth doing." -- Theodore Roosevelt ---------------------------(end of broadcast)--------------------------- TIP 6: Have you searched our list archives? http://archives.postgresql.org