Github user kaknikhil commented on a diff in the pull request:
https://github.com/apache/madlib/pull/271#discussion_r191595833
--- Diff: src/madpack/madpack.py ---
@@ -559,71 +650,59 @@ def _db_rename_schema(from_schema, to_schema):
#
------------------------------------------------------------------------------
-def _db_create_schema(schema):
+def _db_create_schema(schema, is_schema_in_db, filehandle):
"""
Create schema
@param from_schema name of the schema to rename
+ @param is_schema_in_db flag to indicate if schema is already
present
@param to_schema new name for the schema
"""
- info_(this, "> Creating %s schema" % schema.upper(), True)
--- End diff --
Does it add value to keep this info statement ?
---