Github user rashmi815 commented on the issue:
https://github.com/apache/incubator-madlib/pull/136
Re-ran the test with the latest commit and it works fine now. Thanks
@orhankislal .
```sql
drop table if exists out_disc, out_disc_summary;
SELECT madlib.graph_apsp('vertex_disc',NULL,'edge_disc',NULL,'out_disc');
graph_apsp
------------
(1 row)
drop table if exists out_disc_path;
select madlib.graph_apsp_get_path('out_disc',1,5,'out_disc_path');
graph_apsp_get_path
---------------------
(1 row)
select * from out_disc_path;
path
---------
{1,3,5}
(1 row)
```
---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at [email protected] or file a JIRA ticket
with INFRA.
---