From: | Wolfgang(dot)Fuertbauer(at)ebewe(dot)com |
---|---|
To: | Edipo Elder Fernandes de Melo <edipoelder(at)ig(dot)com(dot)br> |
Cc: | pgsql-sql(at)postgresql(dot)org, pgsql-sql-owner(at)postgresql(dot)org |
Subject: | Re: Migrating from 7.1 to 7.2 |
Date: | 2002-05-13 07:12:59 |
Message-ID: | OF86DE6D95.45A5F045-ONC1256BB8.00279D63@ebewe.co.at |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Thread: | |
Lists: | pgsql-sql |
Why do I get this message about 100 times ?
W
On 08.05.2002 17:48:34 pgsql-sql-owner wrote:
>Hello,
>
>I wrote a plpgsql procedure that returns the executition time of it,
>like this:
>
>create procedure myProc() returns time as '
>declare
>v_start time;
>v_end time;
>begin
>select timeofday()::timestamp::time into v_start;
>(do some work)
>select timeofday()::timestamp::time into v_end;
>return v_end - v_start;
>end;' language 'plpgsql'
>
>This worked fine at 7.1, but now, in 7.2.1, isn't working. In 7.1, i
>got:
>
>template1=# select timeofday()::time;
>ERROR: Bad time external representation 'Wed May 08 17:19:15.389569 2002
>BRT'
>template1=# select timeofday()::timestamp::time;
>?column?
>----------
>17:19:20
>(1 row)
>
>In 7.2.1, i got:
>
>bench=# select timeofday()::time;
>ERROR: Bad time external representation 'Wed May 08 17:20:37.891559 2002
>BRT'
>bench=# select timeofday()::timestamp::time;
>ERROR: Cannot cast type 'timestamp with time zone' to 'time without time
>zone'
>
>I tried change time zones, date style, etc... but I didn't fix it.
>
>Thanks for any help,
>
>Edipo Elder
>[edipoelder(at)ig(dot)com(dot)br]
>
>_________________________________________________________________________
>Você podia estar baixando sua musica predileta, enquanto lia esse e-mail.
>Não perca tempo, tenha acesso rápido a internet com o Super iG.
>http://registro.ig.com.br/superig
>
>
>---------------------------(end of broadcast)---------------------------
>TIP 1: subscribe and unsubscribe commands go to majordomo(at)postgresql(dot)org
From | Date | Subject | |
---|---|---|---|
Next Message | Christopher Kings-Lynne | 2002-05-13 07:25:59 | Re: Migrating from 7.1 to 7.2 |
Previous Message | Wolfgang.Fuertbauer | 2002-05-13 06:35:19 | Re: having trouble w/ having clause... |