Github user njayaram2 commented on a diff in the pull request:
https://github.com/apache/madlib/pull/241#discussion_r175522378
--- Diff: src/ports/postgres/modules/utilities/utilities.py_in ---
@@ -794,6 +794,41 @@ def collate_plpy_result(plpy_result_rows):
#
------------------------------------------------------------------------------
+def validate_module_input_params(source_table, output_table,
independent_varname,
+ dependent_varname, module_name, **kwargs):
--- End diff --
How about having an optional param to deal with checking for residual
output tables (summary and standardization tables). We could take a list of
suffixes to check for.
---