[7.3-devl] converision test fails

From: Gordon Runkle <gar(at)integrated-dynamics(dot)com>
To: pgsql-hackers(at)postgresql(dot)org
Subject: [7.3-devl] converision test fails
Date: 2002-09-02 06:26:54
Message-ID: akv0en$2if3$1@news.hub.org
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: 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

Responses

Browse pgsql-hackers by date

  From Date Subject
Next Message Bruce Momjian - CVS 2002-09-02 06:27:05 pgsql-server/contrib/fulltextindex README.fti ...
Previous Message Christopher Kings-Lynne 2002-09-02 06:20:59 Re: RULE regression test failure