From: <mrp...@us...> - 2010-07-20 17:05:45
|
Revision: 3245 http://bigdata.svn.sourceforge.net/bigdata/?rev=3245&view=rev Author: mrpersonick Date: 2010-07-20 17:05:39 +0000 (Tue, 20 Jul 2010) Log Message: ----------- turn off support for XSDDecimal for now Modified Paths: -------------- branches/LEXICON_REFACTOR_BRANCH/bigdata-rdf/src/java/com/bigdata/rdf/lexicon/LexiconRelation.java Modified: branches/LEXICON_REFACTOR_BRANCH/bigdata-rdf/src/java/com/bigdata/rdf/lexicon/LexiconRelation.java =================================================================== --- branches/LEXICON_REFACTOR_BRANCH/bigdata-rdf/src/java/com/bigdata/rdf/lexicon/LexiconRelation.java 2010-07-20 16:17:08 UTC (rev 3244) +++ branches/LEXICON_REFACTOR_BRANCH/bigdata-rdf/src/java/com/bigdata/rdf/lexicon/LexiconRelation.java 2010-07-20 17:05:39 UTC (rev 3245) @@ -2253,9 +2253,9 @@ case XSDInteger: iv = new XSDIntegerInternalValue(XMLDatatypeUtil.parseInteger(v)); break; - case XSDDecimal: - iv = new XSDDecimalInternalValue(XMLDatatypeUtil.parseDecimal(v)); - break; +// case XSDDecimal: +// iv = new XSDDecimalInternalValue(XMLDatatypeUtil.parseDecimal(v)); +// break; case UUID: iv = new UUIDInternalValue(UUID.fromString(v)); break; This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <mrp...@us...> - 2010-07-20 19:41:38
|
Revision: 3250 http://bigdata.svn.sourceforge.net/bigdata/?rev=3250&view=rev Author: mrpersonick Date: 2010-07-20 19:41:32 +0000 (Tue, 20 Jul 2010) Log Message: ----------- no longer implement ILexiconConfiguration Modified Paths: -------------- branches/LEXICON_REFACTOR_BRANCH/bigdata-rdf/src/java/com/bigdata/rdf/lexicon/LexiconRelation.java Modified: branches/LEXICON_REFACTOR_BRANCH/bigdata-rdf/src/java/com/bigdata/rdf/lexicon/LexiconRelation.java =================================================================== --- branches/LEXICON_REFACTOR_BRANCH/bigdata-rdf/src/java/com/bigdata/rdf/lexicon/LexiconRelation.java 2010-07-20 19:40:23 UTC (rev 3249) +++ branches/LEXICON_REFACTOR_BRANCH/bigdata-rdf/src/java/com/bigdata/rdf/lexicon/LexiconRelation.java 2010-07-20 19:41:32 UTC (rev 3250) @@ -146,7 +146,7 @@ * @version $Id$ */ public class LexiconRelation extends AbstractRelation<BigdataValue> - implements ILexiconConfiguration { + /*implements ILexiconConfiguration*/ { final protected static Logger log = Logger.getLogger(LexiconRelation.class); @@ -2219,7 +2219,7 @@ final DTE dte = datatype == null ? null : DTE.valueOf(datatype); - if (dte == null || !isInline(dte)) + if (dte == null || !getLexiconConfiguration().isInline(dte)) return null; final String v = value.stringValue(); @@ -2580,10 +2580,10 @@ /** * See {@link ILexiconConfiguration#isInline(DTE)}. Delegates to the * {@link #lexiconConfiguration} instance. - */ public boolean isInline(DTE dte) { return lexiconConfiguration.isInline(dte); } + */ /** * See {@link ILexiconConfiguration#isLegacyEncoding()}. Delegates to the This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <mrp...@us...> - 2010-07-23 20:30:19
|
Revision: 3280 http://bigdata.svn.sourceforge.net/bigdata/?rev=3280&view=rev Author: mrpersonick Date: 2010-07-23 20:30:13 +0000 (Fri, 23 Jul 2010) Log Message: ----------- fixing bnode bug Modified Paths: -------------- branches/LEXICON_REFACTOR_BRANCH/bigdata-rdf/src/java/com/bigdata/rdf/lexicon/LexiconRelation.java Modified: branches/LEXICON_REFACTOR_BRANCH/bigdata-rdf/src/java/com/bigdata/rdf/lexicon/LexiconRelation.java =================================================================== --- branches/LEXICON_REFACTOR_BRANCH/bigdata-rdf/src/java/com/bigdata/rdf/lexicon/LexiconRelation.java 2010-07-23 20:29:43 UTC (rev 3279) +++ branches/LEXICON_REFACTOR_BRANCH/bigdata-rdf/src/java/com/bigdata/rdf/lexicon/LexiconRelation.java 2010-07-23 20:30:13 UTC (rev 3280) @@ -391,8 +391,8 @@ AbstractTripleStore.Options.DEFAULT_INLINE_LITERALS)); inlineBNodes = storeBlankNodes && Boolean.parseBoolean(getProperty( - AbstractTripleStore.Options.INLINE_LITERALS, - AbstractTripleStore.Options.DEFAULT_INLINE_LITERALS)); + AbstractTripleStore.Options.INLINE_BNODES, + AbstractTripleStore.Options.DEFAULT_INLINE_BNODES)); } This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |