Github user kaknikhil commented on a diff in the pull request: https://github.com/apache/madlib/pull/260#discussion_r180850923 --- Diff: src/ports/postgres/modules/utilities/minibatch_preprocessing.py_in --- @@ -397,8 +408,9 @@ class MiniBatchStandardizer: x_std_dev_str = self.x_std_dev_str) return query - def _get_query_for_standardizing_with_grouping(self): + def _create_table_for_standardizing_with_grouping(self): --- End diff -- yes you are right. It was initially creating the table inside the function and later I moved it outside but forgot to rename the function. will update the name
---