[7.3-devl] converision test fails

Поиск
Список
Период
Сортировка
От Gordon Runkle
Тема [7.3-devl] converision test fails
Дата
Msg-id akv0en$2if3$1@news.hub.org
обсуждение исходный текст
Ответы Re: [7.3-devl] converision test fails  (Tatsuo Ishii <t-ishii@sra.co.jp>)
Список 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 по дате отправления:

Предыдущее
От: Bruce Momjian
Дата:
Сообщение: Re: contrib/ intarray, ltree, intagg broken(?) by array changes
Следующее
От: "Christopher Kings-Lynne"
Дата:
Сообщение: Re: [COMMITTERS] pgsql-server/contrib/fulltextindex README.fti ...