BUG #4809: Missing Expected Operator

From: "Paul Matthews" <plm(at)netspace(dot)net(dot)au>
To: pgsql-bugs(at)postgresql(dot)org
Subject: BUG #4809: Missing Expected Operator
Date: 2009-05-15 12:10:14
Message-ID: 200905151210.n4FCAEcO053885@wwwmaster.postgresql.org
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-bugs


The following bug has been logged online:

Bug reference: 4809
Logged by: Paul Matthews
Email address: plm(at)netspace(dot)net(dot)au
PostgreSQL version: 8.3.7
Operating system: Linux OpenSuse 11.0
Description: Missing Expected Operator
Details:

Not a bug as such, but an obvious operator is missing.

WHERE
g.box_boundary @> w.geocode and
ERROR: operator does not exist: box @> point
g.boundary @> w.geocode;

This can be worked around with, the following, but it is really a kludge.

WHERE
g.box_boundary @> box( w.geocode, w.geocode ) and
g.boundary @> w.geocode;

Responses

Browse pgsql-bugs by date

  From Date Subject
Next Message Heikki Linnakangas 2009-05-15 12:19:19 Re: [HACKERS] Re: BUG #4796: Recovery followed by backup creates unrecoverable WAL-file
Previous Message Simon Riggs 2009-05-15 11:58:34 Re: [HACKERS] Re: BUG #4796: Recovery followed by backup creates unrecoverable WAL-file