[
https://issues.apache.org/jira/browse/RYA-53?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=15230660#comment-15230660
]
ASF GitHub Bot commented on RYA-53:
-----------------------------------
Github user isper3at commented on a diff in the pull request:
https://github.com/apache/incubator-rya/pull/36#discussion_r58911970
--- Diff:
extras/rya.pcj.fluo/pcj.fluo.app/src/main/java/org/apache/rya/indexing/pcj/fluo/app/observers/TripleObserver.java
---
@@ -65,6 +72,12 @@ public ObservedColumn getObservedColumn() {
public void process(final TypedTransactionBase tx, final Bytes row,
final Column column) {
//get string representation of triple
final String triple = IncUpdateDAO.getTripleString(row);
+ final Bytes visiBytes = tx.get(row, FluoQueryColumns.TRIPLES);
+ String visibility = "";
+ if(visiBytes != null) {
+ visibility = ENCODER.decodeString(visiBytes);
+ }
+ final VisibilityBindingSetStringConverter converter = new
VisibilityBindingSetStringConverter();
--- End diff --
move out
> Add Visibility to Rya PCJs
> --------------------------
>
> Key: RYA-53
> URL: https://issues.apache.org/jira/browse/RYA-53
> Project: Rya
> Issue Type: New Feature
> Reporter: Andrew Smith
>
> Update the PCJ api to support visibility attached to binding sets
--
This message was sent by Atlassian JIRA
(v6.3.4#6332)