On 11/10/11 21:57, Paolo Castagna wrote:
Hi,
while I was helping Jérôme on jena-users mailing list investigating his
problem with LARQ SNAPSHOTs, I found another strange problem.
Here is what I do:
....
java -cp target/fuseki-0.2.1-SNAPSHOT-sys.jar tdb.tdbdump --loc=/tmp/tdb
Exception in thread "main" java.lang.UnsupportedOperationException: subject
cannot be null
at com.hp.hpl.jena.graph.Triple.<init>(Triple.java:28)
Something is out of date:
1/ It's fixed (it's a different manifestation of JENA-9?)
2/ Even if not, that's not the error message:
NodecSSE.decode has:
try {
Node n = t.asNode() ;
if ( n == null ) throw new TDBException("Not a node: "+str) ;
return n ;
} catch (RiotException ex)
{
throw new TDBException("Bad string for node: "+str) ;
}
so a recent change means null is trapped early.
Maybe the builds are behind the codebase (I thought I'd updated
everything) - so timestamp checking might reveal something.
(can't check now - using offline email)
Andy