Github user iyerr3 commented on a diff in the pull request: https://github.com/apache/incubator-madlib/pull/155#discussion_r129800078 --- Diff: src/ports/postgres/modules/graph/wcc.py_in --- @@ -102,7 +115,8 @@ def wcc(schema_madlib, vertex_table, vertex_id, edge_table, edge_args, toupdate = unique_string(desp='toupdate') temp_out_table = unique_string(desp='tempout') - distribution = '' if is_platform_pg() else "DISTRIBUTED BY ({0})".format(vertex_id) + distribution = '' if is_platform_pg( --- End diff -- please don't do this! If you want multi line then ``` ('' if is_platform_pg() else "DISTRIBUTED BY ({0})".format(vertex_id)) ```
--- 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 infrastruct...@apache.org or file a JIRA ticket with INFRA. ---