[
https://issues.apache.org/jira/browse/MADLIB-1137?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=16130921#comment-16130921
]
Frank McQuillan commented on MADLIB-1137:
-----------------------------------------
WCC
{code}
DROP TABLE IF EXISTS "Wcc_out", "Wcc_out_summary";
SELECT madlib.weakly_connected_components(
'vertex', -- Vertex table
'id', -- Vertix id column
'edge', -- Edge table
'src=src, dest=dest', -- Comma delimted string of edge
arguments
'"Wcc_out"'); -- Output table of weakly
connected components
SELECT * FROM "Wcc_out" ORDER BY component_id, id;
{code}
prodces
{code}
id | component_id
----+--------------
0 | 0
1 | 0
2 | 0
3 | 0
5 | 0
6 | 0
4 | 4
10 | 10
11 | 10
12 | 10
13 | 10
14 | 14
15 | 14
16 | 14
(14 rows)
{code}
> Graph: Quoted output table name does not work for some modules
> --------------------------------------------------------------
>
> Key: MADLIB-1137
> URL: https://issues.apache.org/jira/browse/MADLIB-1137
> Project: Apache MADlib
> Issue Type: Bug
> Components: Module: Graph
> Reporter: Rahul Iyer
> Priority: Minor
> Fix For: v1.12
>
>
> Summary
> Looks like it affects:
> * APSP
> * BFS
> * SSSP
> * PageRank
> Weakly connected components does not create a <out>_summary table so that one
> seems to work
> -------------------------
> APSP: Using the example doc:
> {code}
> SELECT madlib.graph_apsp(
> 'vertex', -- Vertex table
>
>
>
> 'id', -- Vertix id column (NULL means use default naming)
>
>
>
> 'edge', -- Edge table
>
>
>
> 'src=src_id, dest=dest_id, weight=edge_weight',
>
>
>
> '"OUT_APSP"'); -- Output table of shortest paths
> ERROR: spiexceptions.SyntaxError: syntax error at or near "_summary"
> LINE 1: CREATE TABLE "OUT_APSP"_summary (
> ^
> QUERY: CREATE TABLE "OUT_APSP"_summary (
> vertex_table TEXT,
> vertex_id TEXT,
> edge_table TEXT,
> edge_args TEXT,
> out_table TEXT,
> grouping_cols TEXT)
> CONTEXT: Traceback (most recent call last):
> PL/Python function "graph_apsp", line 23, in <module>
> return apsp.graph_apsp(**globals())
> PL/Python function "graph_apsp", line 171, in graph_apsp
> PL/Python function "graph_apsp"
> {code}
--
This message was sent by Atlassian JIRA
(v6.4.14#64029)