Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 2a61368 + 50b3e6b commit 8471533Copy full SHA for 8471533
bigdata-core/bigdata-rdf/src/java/com/bigdata/rdf/lexicon/LexiconRelation.java
@@ -3362,7 +3362,12 @@ final public IV getIV(final Value value) {
3362
*/
3363
@SuppressWarnings("rawtypes")
3364
final public IV getInlineIV(final Value value) {
3365
-
+ if (value instanceof BigdataValue) {
3366
+ BigdataValue bv = (BigdataValue)value;
3367
+ if(bv.isRealIV()) {
3368
+ return bv.getIV();
3369
+ }
3370
3371
return getLexiconConfiguration().createInlineIV(value);
3372
3373
}
0 commit comments