You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@madlib.apache.org by ri...@apache.org on 2016/01/15 03:06:34 UTC

incubator-madlib git commit: Minor: Missed one change in eea1f1

Repository: incubator-madlib
Updated Branches:
  refs/heads/master eea1f1f76 -> eec20a4bc


Minor: Missed one change in eea1f1


Project: http://git-wip-us.apache.org/repos/asf/incubator-madlib/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-madlib/commit/eec20a4b
Tree: http://git-wip-us.apache.org/repos/asf/incubator-madlib/tree/eec20a4b
Diff: http://git-wip-us.apache.org/repos/asf/incubator-madlib/diff/eec20a4b

Branch: refs/heads/master
Commit: eec20a4bc691350abdbcdaaf350e5d912574c392
Parents: eea1f1f
Author: Rahul Iyer <ri...@pivotal.io>
Authored: Thu Jan 14 18:06:28 2016 -0800
Committer: Rahul Iyer <ri...@pivotal.io>
Committed: Thu Jan 14 18:06:28 2016 -0800

----------------------------------------------------------------------
 src/ports/postgres/modules/utilities/validate_args.py_in | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-madlib/blob/eec20a4b/src/ports/postgres/modules/utilities/validate_args.py_in
----------------------------------------------------------------------
diff --git a/src/ports/postgres/modules/utilities/validate_args.py_in b/src/ports/postgres/modules/utilities/validate_args.py_in
index 7093122..f3591d7 100644
--- a/src/ports/postgres/modules/utilities/validate_args.py_in
+++ b/src/ports/postgres/modules/utilities/validate_args.py_in
@@ -450,7 +450,7 @@ def explicit_bool_to_text(tbl, cols, schema_madlib):
     """
     Patch madlib.bool_to_text for columns that are of type boolean.
     """
-    col_to_type = get_cols_and_types(tbl)
+    col_to_type = dict(get_cols_and_types(tbl))
     patched = []
     for col in cols:
         if col not in col_to_type: