| From: | Chris Roffler <croffler(at)earthlink(dot)net> |
|---|---|
| To: | pgsql-general(at)postgresql(dot)org |
| Subject: | Xpath Index in PostgreSQL |
| Date: | 2010-03-05 12:43:29 |
| Message-ID: | 3984722a1003050443s754e6bfam410e901cee1e5ef@mail.gmail.com |
| Views: | Whole Thread | Raw Message | Download mbox | Resend email |
| Thread: | |
| Lists: | pgsql-general |
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 TABLE time_series
(
id bigint NOT NULL,
"name" character varying NOT NULL,
"timestamp" timestamp with time zone NOT NULL,
start_date timestamp with time zone,
end_date timestamp with time zone,
.............
external_attributes xml,
..............
)
WITH (
OIDS=FALSE
);
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'
| From | Date | Subject | |
|---|---|---|---|
| Next Message | Tom Lane | 2010-03-05 13:22:32 | Re: Xpath Index in PostgreSQL |
| Previous Message | venkatrao.b | 2010-03-05 12:19:38 | Re: [NOVICE] Is there any oracle user_source table equivalent in postgre? |