You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@madlib.apache.org by iyerr3 <gi...@git.apache.org> on 2018/10/01 22:29:10 UTC

[GitHub] madlib pull request #328: Graph: Add id of nodes with 0 in-degree

GitHub user iyerr3 opened a pull request:

    https://github.com/apache/madlib/pull/328

    Graph: Add id of nodes with 0 in-degree

    JIRA: MADLIB-1279
    
    IDs of nodes with 0 in-degree were not showing in the output of
    `in_out_degrees` since the output table was a result of a full outer
    join where the id was obtained from only one side.
    
    This has been fixed by checking for NULL values (using coalesce) and the
    result from other side is obtained if the ID is missing on primary side.
    
    Closes #328

You can merge this pull request into a Git repository by running:

    $ git pull https://github.com/iyerr3/madlib bugfix/graph_degrees_missing_id

Alternatively you can review and apply these changes as the patch at:

    https://github.com/apache/madlib/pull/328.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 #328
    
----
commit 2cb3cc7b35adf5da2a07d59affc3d8e1c1641479
Author: Rahul Iyer <ri...@...>
Date:   2018-10-01T22:24:20Z

    Graph: Add id of nodes with 0 in-degree
    
    JIRA: MADLIB-1279
    
    IDs of nodes with 0 in-degree were not showing in the result of
    `in_out_degrees` since the output table was a result of a full outer
    join where the id was obtained from only one side.
    
    This has been fixed by checking for NULL values (using coalesce) and the
    result from other side is obtained if the ID is missing on primary side.
    
    Closes #328

----


---

[GitHub] madlib issue #328: Graph: Add id of nodes with 0 in-degree

Posted by asfgit <gi...@git.apache.org>.
Github user asfgit commented on the issue:

    https://github.com/apache/madlib/pull/328
  
    
    Refer to this link for build results (access rights to CI server needed): 
    https://builds.apache.org/job/madlib-pr-build/694/



---

[GitHub] madlib issue #328: Graph: Add id of nodes with 0 in-degree

Posted by asfgit <gi...@git.apache.org>.
Github user asfgit commented on the issue:

    https://github.com/apache/madlib/pull/328
  
    
    Refer to this link for build results (access rights to CI server needed): 
    https://builds.apache.org/job/madlib-pr-build/695/



---

[GitHub] madlib pull request #328: Graph: Add id of nodes with 0 in-degree

Posted by asfgit <gi...@git.apache.org>.
Github user asfgit closed the pull request at:

    https://github.com/apache/madlib/pull/328


---