Re: Re: Lock up on 7.0.2 involving CREATE FUNCTION/INDEX..

From: Mike Mascari <mascarm(at)mascari(dot)com>
To: Philip Hallstrom <philip(at)adhesivemedia(dot)com>
Cc: pgsql-general(at)postgresql(dot)org
Subject: Re: Re: Lock up on 7.0.2 involving CREATE FUNCTION/INDEX..
Date: 2000-08-10 02:37:49
Message-ID: 3992157D.36DAE0A6@mascari.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-general

Philip Hallstrom wrote:
>
> Is there another function that will uppercase? Or is there some way to
> call the other UPPER function? Or something within plpgsql I don't know
> about.
> Thanks!
> -philip

I don't understand this. UPPER() is a built-in function:

stocks=# create table test (field varchar(16));
CREATE
stocks=# insert into test values ('hello');
INSERT 1788137 1
stocks=# select upper(field) from test;
upper
-------
HELLO
(1 row)

The oid for upper is 871. Do you not have this in your pg_proc?

--

Cheers,

Mike Mascari

In response to

Responses

Browse pgsql-general by date

  From Date Subject
Next Message Prasanth A. Kumar 2000-08-10 02:46:30 Re: Re: Lock up on 7.0.2 involving CREATE FUNCTION/INDEX..
Previous Message Lamar Owen 2000-08-10 02:30:45 Re: Re: Lock up on 7.0.2 involving CREATE FUNCTION/INDEX..