MCPcopy Create free account
hub / github.com/apache/impala / create_db

Method create_db

tests/comparison/db_connection.py:233–236  ·  view source on GitHub ↗
(self, db_name)

Source from the content-addressed store, hash-verified

231 return 'SHOW DATABASES'
232
233 def create_db(self, db_name):
234 LOG.info("Creating database %s", db_name)
235 db_name = db_name.lower()
236 self.execute('CREATE DATABASE ' + db_name)
237
238 def create_db_if_not_exists(self, db_name):
239 LOG.info("Creating database %s", db_name)

Callers 1

ensure_empty_dbMethod · 0.95

Calls 1

executeMethod · 0.95

Tested by

no test coverage detected