From: <tho...@us...> - 2013-12-09 20:53:45
|
Revision: 7629 http://bigdata.svn.sourceforge.net/bigdata/?rev=7629&view=rev Author: thompsonbry Date: 2013-12-09 20:53:38 +0000 (Mon, 09 Dec 2013) Log Message: ----------- Modified to ONLY run in the SIDS mode pending fix by MP. {{{ java.lang.RuntimeException: java.util.concurrent.ExecutionException: java.lang.IllegalArgumentException: context bound, but not quads or sids: < TermId(7B), TermId(5U), com.bigdata.rdf.internal.impl.literal.LiteralExtensionIV@25889b2f, TermId(8B) : Explicit > at com.bigdata.rdf.spo.SPORelation.insert(SPORelation.java:2234) at com.bigdata.rdf.store.AbstractTripleStore.addStatements(AbstractTripleStore.java:3931) at com.bigdata.rdf.rio.StatementBuffer.writeSPOs(StatementBuffer.java:1113) at com.bigdata.rdf.rio.StatementBuffer.addStatements(StatementBuffer.java:977) at com.bigdata.rdf.rio.StatementBuffer.incrementalWrite(StatementBuffer.java:800) at com.bigdata.rdf.rio.StatementBuffer.flush(StatementBuffer.java:400) at com.bigdata.rdf.rio.TestStatementBuffer.test_reificationDoneRight_enabled(TestStatementBuffer.java:523) Caused by: java.util.concurrent.ExecutionException: java.lang.IllegalArgumentException: context bound, but not quads or sids: < TermId(7B), TermId(5U), com.bigdata.rdf.internal.impl.literal.LiteralExtensionIV@25889b2f, TermId(8B) : Explicit > at java.util.concurrent.FutureTask$Sync.innerGet(FutureTask.java:222) at java.util.concurrent.FutureTask.get(FutureTask.java:83) at com.bigdata.rdf.spo.SPORelation.logFuture(SPORelation.java:2260) at com.bigdata.rdf.spo.SPORelation.insert(SPORelation.java:2215) Caused by: java.lang.IllegalArgumentException: context bound, but not quads or sids: < TermId(7B), TermId(5U), com.bigdata.rdf.internal.impl.literal.LiteralExtensionIV@25889b2f, TermId(8B) : Explicit > at com.bigdata.rdf.spo.SPOIndexWriter.call(SPOIndexWriter.java:275) at com.bigdata.rdf.spo.SPOIndexWriter.call(SPOIndexWriter.java:68) at java.util.concurrent.FutureTask$Sync.innerRun(FutureTask.java:303) at java.util.concurrent.FutureTask.run(FutureTask.java:138) at java.util.concurrent.ThreadPoolExecutor$Worker.runTask(ThreadPoolExecutor.java:886) at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:908) at java.lang.Thread.run(Thread.java:662) }}} See #526. Modified Paths: -------------- branches/BIGDATA_RELEASE_1_3_0/bigdata-rdf/src/test/com/bigdata/rdf/rio/TestStatementBuffer.java Modified: branches/BIGDATA_RELEASE_1_3_0/bigdata-rdf/src/test/com/bigdata/rdf/rio/TestStatementBuffer.java =================================================================== --- branches/BIGDATA_RELEASE_1_3_0/bigdata-rdf/src/test/com/bigdata/rdf/rio/TestStatementBuffer.java 2013-12-09 17:47:42 UTC (rev 7628) +++ branches/BIGDATA_RELEASE_1_3_0/bigdata-rdf/src/test/com/bigdata/rdf/rio/TestStatementBuffer.java 2013-12-09 20:53:38 UTC (rev 7629) @@ -451,9 +451,15 @@ return; } - if (store.isQuads() || store.isStatementIdentifiers()) { - /* - * Disabled. + if (!store.isStatementIdentifiers()) { + /** + * Disabled. FIXME This should be ON for TRIPLES or QUADS. It + * only works in the SIDS mode right now. The root cause is + * + * <pre> + * Caused by: java.lang.IllegalArgumentException: context bound, but not quads or sids: < TermId(7B), TermId(5U), com.bigdata.rdf.internal.impl.literal.LiteralExtensionIV@25889b2f, TermId(8B) : Explicit > + * at com.bigdata.rdf.spo.SPOIndexWriter.call(SPOIndexWriter.java:275) + * </pre> */ return; } This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |