This is an automated email from the ASF dual-hosted git repository. njayaram pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/madlib.git
commit bd1dda39b0579ae677f6a1b0b1b2c01457d5c02c Author: Nandish Jayaram <[email protected]> AuthorDate: Wed Apr 24 11:12:01 2019 -0700 MLP: Update error message text in minibatch validation. --- src/ports/postgres/modules/utilities/minibatch_validation.py_in | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/ports/postgres/modules/utilities/minibatch_validation.py_in b/src/ports/postgres/modules/utilities/minibatch_validation.py_in index 1c92a13..14d97f3 100644 --- a/src/ports/postgres/modules/utilities/minibatch_validation.py_in +++ b/src/ports/postgres/modules/utilities/minibatch_validation.py_in @@ -37,6 +37,6 @@ def validate_dependent_var_for_minibatch(table_name, var_name, expr_type=None): result = plpy.execute(query) if not result[0]["is_encoded"]: plpy.error("Dependent variable column {0} in table {1} should be " - "minibatched and one hot encoded.You might need to re run " + "minibatched and one hot encoded. You might need to re run " "the minibatch_preprocessor function and make sure that " - "the variable is encoded".format(var_name, table_name)) + "the variable is encoded.".format(var_name, table_name))
