[7.3-devl] converision test fails - Mailing list pgsql-hackers

From Gordon Runkle
Subject [7.3-devl] converision test fails
Date
Msg-id akv0en$2if3$1@news.hub.org
Whole thread Raw
Responses Re: [7.3-devl] converision test fails  (Tatsuo Ishii <t-ishii@sra.co.jp>)
List pgsql-hackers
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


pgsql-hackers by date:

Previous
From: Bruce Momjian
Date:
Subject: Re: contrib/ intarray, ltree, intagg broken(?) by array changes
Next
From: "Christopher Kings-Lynne"
Date:
Subject: Re: [COMMITTERS] pgsql-server/contrib/fulltextindex README.fti ...