Re: org.postgresql.util.PSQLException: ERROR: could not identify an equality operator for type xml

Поиск
Список
Период
Сортировка
От David Johnston
Тема Re: org.postgresql.util.PSQLException: ERROR: could not identify an equality operator for type xml
Дата
Msg-id 1384899598791-5779269.post@n5.nabble.com
обсуждение исходный текст
Ответ на Re: org.postgresql.util.PSQLException: ERROR: could not identify an equality operator for type xml  (Kevin Grittner <kgrittn@ymail.com>)
Список pgsql-general
Kevin Grittner-5 wrote
> gajendra s v <

> svgajendra@

> > wrote:
>
>> I have added one column with xml type ,after adding I am getting
>> following error.
>>
>> org.postgresql.util.PSQLException: ERROR: could not identify an equality
>> operator for type xml
>
> The UNION operation requires comparing all columns in the result
> record to remove duplicates.  To identify duplicates, there must be
> a notion of equality defined (getting technical here) by a default
> btree opclass for the type.  XML does not have one, so UNION of a
> result set including an XML column is not allowed.
>
> Do you need the duplicate removal?  If not, use UNION ALL.  If you
> need that you may need to cast the XML to text for intermediate
> steps and then cast back to XML at the outermost level.

The other option is to only union the PK field(s) on KM_COURSE_MAST then as
a final outer query join that union-ed result back with KM_COURSE_MAST using
the PK and attach whatever additional columns your query desires.

David J.




--
View this message in context:
http://postgresql.1045698.n5.nabble.com/org-postgresql-util-PSQLException-ERROR-could-not-identify-an-equality-operator-for-type-xml-tp5779042p5779269.html
Sent from the PostgreSQL - general mailing list archive at Nabble.com.


В списке pgsql-general по дате отправления:

Предыдущее
От: Kevin Grittner
Дата:
Сообщение: Re: org.postgresql.util.PSQLException: ERROR: could not identify an equality operator for type xml
Следующее
От: Jeff Janes
Дата:
Сообщение: Re: Postgres as In-Memory Database?