Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 8471533

Browse files
authored
Merge pull request #521 from blazegraph/BLZG-9157
Another fix for #100
2 parents 2a61368 + 50b3e6b commit 8471533

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

bigdata-core/bigdata-rdf/src/java/com/bigdata/rdf/lexicon/LexiconRelation.java

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3362,7 +3362,12 @@ final public IV getIV(final Value value) {
33623362
*/
33633363
@SuppressWarnings("rawtypes")
33643364
final public IV getInlineIV(final Value value) {
3365-
3365+
if (value instanceof BigdataValue) {
3366+
BigdataValue bv = (BigdataValue)value;
3367+
if(bv.isRealIV()) {
3368+
return bv.getIV();
3369+
}
3370+
}
33663371
return getLexiconConfiguration().createInlineIV(value);
33673372

33683373
}

0 commit comments

Comments
 (0)