Re: [Owlim-discussion] Error in predicate statistics - context index related

2013-04-05 Thread damyan
Hi Marek, thank you for the testcase - we were able to reproduce the issue and will include a fix with the next maintenance release Damyan Ognyanov Ontotext AD On 4/5/2013 5:57 PM, Marek Šurek wrote: Hi, I was able to reproduce problem with error predicate statistics related to context-in

[Owlim-discussion] Error in predicate statistics - context index related

2013-04-05 Thread Marek Šurek
Hi, I was able to reproduce problem with error predicate statistics related to context-index :  Owlim b5849, Sesame 2.6.10, Linux RHEL, Java 7 64 bit, Tomcat 7 1. Edit test.ttl to correctly import foo.owl 2. Create repository : curl -X POST -H "Content-Type:text/turtle" -T /home/path/to/test.

Re: [Owlim-discussion] REDUCED/DISTINCT

2013-04-05 Thread Barry Bishop
... I learn something everyday! Yes, this is indeed strange, but I will ask Jeen to have a look. Best, barry On 04/05/2013 02:08 PM, Jerven Bolleman wrote: Hi Barry, Kind of odd that PREFIX rdfs: PREFIX up: SELECT REDUCED ?

Re: [Owlim-discussion] REDUCED/DISTINCT

2013-04-05 Thread Jerven Bolleman
Hi Barry, Kind of odd that PREFIX rdfs: PREFIX up: SELECT REDUCED ?protein WHERE { ?protein a up:Protein ; up:reviewed true ; rdfs:seeAlso ?link . } Does work. Reduced and Distinct both exist in

Re: [Owlim-discussion] REDUCED/DISTINCT

2013-04-05 Thread Barry Bishop
Hi Jerven, This is simply because REDUCED is not yet supported. To be honest, I wasn't aware of this operator until your email, but I see that it has been around for a long time. Now that SPARQL 1.1 has reached recommendation status, I expect there will be a push to get Sesame/OWLIM in synch

[Owlim-discussion] REDUCED/DISTINCT

2013-04-05 Thread Jerven Bolleman
Dear OWLIM developers, PREFIX rdfs: PREFIX up: SELECT (count(DISTINCT(?protein)) as ?count) WHERE { ?protein a up:Protein ; up:reviewed true ; rdfs:seeAlso ?link . } Is allowed PREFIX rdfs: