Re: Xpath Index in PostgreSQL - Mailing list pgsql-general

From Tom Lane
Subject Re: Xpath Index in PostgreSQL
Date
Msg-id 29360.1267795352@sss.pgh.pa.us
Whole thread Raw
In response to Xpath Index in PostgreSQL  (Chris Roffler <croffler@earthlink.net>)
Responses Re: Xpath Index in PostgreSQL  (Chris Roffler <croffler@earthlink.net>)
List pgsql-general
Chris Roffler <croffler@earthlink.net> writes:
> I am trying to setup an index on an xpath expression but the query never
> uses the index.
> Could someone enlighten me please ?

> Here is the setup :

> CREATE INDEX xml_index
>   ON time_series
>   USING btree
>   ((xpath('/AttributeList/Attributes/Attribute/Name/text()'::text,
> external_attributes)::text[]));

> And here is the query :

> select id, name
>  from
>   time_series
>  where
>  (xpath('/AttributeList/Attributes/Attribute/Name/text()',
> external_attributes))[1]::text='Attribute100'

Doesn't work that way --- subscripting isn't an indexable operation.
To make that query fast with a standard index, you'd need the index to
be on
    (xpath('/AttributeList/Attributes/Attribute/Name/text()',
    external_attributes))[1]::text

            regards, tom lane

pgsql-general by date:

Previous
From: Chris Roffler
Date:
Subject: Xpath Index in PostgreSQL
Next
From: Tom Lane
Date:
Subject: Re: ERROR: row is too big: size 8176, maximum size 8160