Hi all,

I created a index on 1 collection for testing purpose.

create index "basictype_id"
  on fn:collection("basicTypes/released")/Product
  by @identifier
  as xs:string

Using the index like below works just fine:

index-scan("basictype_id", "PH3330L", "EQ")

But now I had the idea of using the index-scan to quickly return a sequence of 
Products like below:

declare function local:getBasicTypes($productIds as xs:string*) as 
element(Product)* {
    for $id in $productIds return index-scan("basictype_id", $id, "EQ")
};

That unfortunately does not work as index-scan can only work with literal 
values apparently.  Or am I missing something here?
But is what I am trying to accomplish here possible in some way?  I find it 
hard believe that the above use case is not wanted by most of us.

Thx in advance,
Robby Pelssers


------------------------------------------------------------------------------
Live Security Virtual Conference
Exclusive live event will cover all the ways today's security and 
threat landscape has changed and how IT managers can respond. Discussions 
will include endpoint security, mobile security and the latest in malware 
threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
_______________________________________________
Sedna-discussion mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/sedna-discussion

Reply via email to