Github user jingyimei commented on a diff in the pull request:
https://github.com/apache/madlib/pull/244#discussion_r177912288
--- Diff: src/ports/postgres/modules/graph/pagerank.py_in ---
@@ -527,14 +615,55 @@ def pagerank(schema_madlib, vertex_table, vertex_id,
edge_table, edge_args,
""".format(**locals()))
# Step 4: Cleanup
- plpy.execute("""DROP TABLE IF EXISTS {0},{1},{2},{3},{4},{5},{6}
+ plpy.execute("""DROP TABLE IF EXISTS
{0},{1},{2},{3},{4},{5},{6},{7}
""".format(out_cnts, edge_temp_table, cur, message, cur_unconv,
- message_unconv, nodes_with_no_incoming_edges))
+ message_unconv, nodes_with_no_incoming_edges,
personalized_nodes))
--- End diff --
This "personalized_nodes" table doesn't get created before
---