ibis.impala.api.ImpalaClient.drop_table¶
-
ImpalaClient.
drop_table
(table_name, database=None, force=False)¶ Drop an Impala table
Parameters: table_name : string
database : string, default None (optional)
force : boolean, default False
Database may throw exception if table does not exist
Examples
>>> table = 'my_table' >>> db = 'operations' >>> con.drop_table(table, database=db, force=True)