[
https://issues.apache.org/jira/browse/RYA-494?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=16469019#comment-16469019
]
ASF GitHub Bot commented on RYA-494:
------------------------------------
GitHub user kchilton2 opened a pull request:
https://github.com/apache/incubator-rya/pull/295
RYA-494 Fixed a bug where the shell was not loading or displaying all…
… Statements.
This ended up being a display bug. The code that was iterating and display
binding sets was skipping one. I left a bunch of tests in that helped narrow
down where the bug was.
You can merge this pull request into a Git repository by running:
$ git pull https://github.com/kchilton2/incubator-rya RYA-494
Alternatively you can review and apply these changes as the patch at:
https://github.com/apache/incubator-rya/pull/295.patch
To close this pull request, make a commit to your master/trunk branch
with (at least) the following in the commit message:
This closes #295
----
commit 942c3420bb14bafca4cde6d0b06a3ef100f07772
Author: kchilton2 <kevin.e.chilton@...>
Date: 2018-05-08T22:33:24Z
RYA-494 Fixed a bug where the shell was not loading or displaying all
Statements.
----
> Shell insert and query bug.
> ---------------------------
>
> Key: RYA-494
> URL: https://issues.apache.org/jira/browse/RYA-494
> Project: Rya
> Issue Type: Bug
> Affects Versions: 4.0.0
> Reporter: Kevin Chilton
> Assignee: Kevin Chilton
> Priority: Major
>
> Using the Rya Shell:
> # Connect to a cluster of Accumulo.
> # Install an instance of Rya that has all secondary indexers and the
> sharding turned off.
> # Connect to that instance of rya.
> # Load the following N-Triples file into it:
> ##
> {code:java}
> <urn:Alice> <urn:talksTo> <urn:Bob>.
> <urn:Bob> <urn:talksTo> <urn:Alice>.
> <urn:Bob> <urn:talksTo> <urn:Charlie>.
> <urn:Charlie> <urn:talksTo> <urn:Alice>.
> <urn:David> <urn:talksTo> <urn:Eve>.
> <urn:Eve> <urn:listensTo> <urn:Bob>.{code}
> # Query for all statements using the following query:
> ## select * where \{ ?s ?p ?o .}
> You will see the following results:
> {code:java}
> p,s,o
> urn:talksTo,urn:Alice,urn:Bob
> urn:talksTo,urn:Bob,urn:Charlie
> urn:talksTo,urn:Charlie,urn:Alice
> urn:talksTo,urn:David,urn:Eve
> urn:listensTo,urn:Eve,urn:Bob
> urn:org.apache.rya/2012/05#version,urn:org.apache.rya/2012/05#rts,"3.0.0"{code}
> The following statement is missing:
> {code:java}
> <urn:Bob> <urn:talksTo> <urn:Alice>.{code}
--
This message was sent by Atlassian JIRA
(v7.6.3#76005)