Re: time in 7.2 - Mailing list pgsql-general

From Joel Burton
Subject Re: time in 7.2
Date
Msg-id JGEPJNMCKODMDHGOBKDNOEOKCNAA.joel@joelburton.com
Whole thread Raw
In response to time in 7.2  ("Andrew Bartley" <abartley@evolvosystems.com>)
List pgsql-general
In the following code the "first_time" column is a time type..  without time zone. 

 

select * from visitorhistory
where   visitorhistory.first_time > current_time - interval '10 minutes'

 

The result

 

ERROR: Unable to identify an operator '>' for types 'time without time zone' and 'time with time zone'

You will have to retype this query using an explicit cast (State:S1000, Native Code:7)

 

Stuffed if I can make this work.  Can some one point me in the right direction?

 
 
 
 
WHERE timetz(first_time) > current_time - interval '10 minutes' 

pgsql-general by date:

Previous
From: Randall Perry
Date:
Subject: Re: Serious environment problem with 7.2 on Solaris
Next
From: Randall Perry
Date:
Subject: Re: Serious environment problem with 7.2 on Solaris