Re: WIP: RangeTypes

From: Jeff Davis <pgsql(at)j-davis(dot)com>
To: pgsql-hackers(at)postgresql(dot)org
Subject: Re: WIP: RangeTypes
Date: 2011-01-30 21:33:07
Message-ID: 1296423187.11513.608.camel@jdavis
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-hackers

[ trying a third time to send this message, apparently there were
infrastructure problems before ]

On Sun, 2011-01-30 at 02:55 +0000, Thom Brown wrote:
> postgres=# select '[18,20]'::numrange @> 19;
> ERROR: operator does not exist: numrange @> integer
> LINE 1: select '[18,20]'::numrange @> 19;
> ^
> HINT: No operator matches the given name and argument type(s). You
> might need to add explicit type casts.

It's because it doesn't know the type on the right side, and assumes
it's an int4.

select '[18,20]'::numrange @> 19.0;

works.

Regards,
Jeff Davis

In response to

Responses

Browse pgsql-hackers by date

  From Date Subject
Next Message Jan Urbański 2011-01-30 21:52:27 Re: wildcard search support for pg_trgm
Previous Message Peter Eisentraut 2011-01-30 21:30:05 Re: log_hostname and pg_stat_activity