Hello,

When I try the following query in D2R (d2r-server-0.7) it goes into an
infinite loop that you can watch in the system console. If I try ctrl-c a
few times it will eventually kill the java runtime and I can restart D2R.

SELECT * {
    ?record enrol:country ?country .
    ?record enrol:country "US" .
    ?record enrol:hours ?hours . FILTER (xs:decimal(?hours) < 3)
} LIMIT 10

I can make it run if I change to xs:double as follows:

SELECT * {
    ?record enrol:country ?country .
    ?record enrol:country "US" .
    ?record enrol:hours ?hours . FILTER (xs:double(?hours) < 3)
} LIMIT 10

I can't find any reference to this issue - is this something that hasn't
been reported yet?

Thanks,
Rob
------------------------------------------------------------------------------
Virtualization & Cloud Management Using Capacity Planning
Cloud computing makes use of virtualization - but cloud computing 
also focuses on allowing computing to be delivered as a service.
http://www.accelacomm.com/jaw/sfnl/114/51521223/
_______________________________________________
d2rq-map-devel mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/d2rq-map-devel

Reply via email to