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

Method drop_table

tests/comparison/db_connection.py:493–495  ·  view source on GitHub ↗
(self, table_name, if_exists=True)

Source from the content-addressed store, hash-verified

491 return self.EXACT_TYPES_TO_SQL[data_type]
492
493 def drop_table(self, table_name, if_exists=True):
494 LOG.info('Dropping table %s', table_name)
495 self.execute('DROP TABLE IF EXISTS ' + table_name.lower())
496
497 def drop_view(self, view_name, if_exists=True):
498 LOG.info('Dropping view %s', view_name)

Calls 1

executeMethod · 0.95