Github user jingyimei commented on a diff in the pull request:
https://github.com/apache/madlib/pull/244#discussion_r177893734
--- Diff: src/ports/postgres/modules/graph/pagerank.py_in ---
@@ -122,12 +158,13 @@ def pagerank(schema_madlib, vertex_table, vertex_id,
edge_table, edge_args,
grouping_where_clause = ''
group_by_clause = ''
random_prob = ''
+ ppr_join_clause = ''
edge_temp_table = unique_string(desp='temp_edge')
grouping_cols_comma = grouping_cols + ',' if grouping_cols else ''
distribution = ('' if is_platform_pg() else
"DISTRIBUTED BY ({0}{1})".format(
- grouping_cols_comma, dest))
+ grouping_cols_comma, dest))
--- End diff --
maybe indent with the above line, or move the above line backwards to the
current place
---