예제 #1
0
파일: fact.py 프로젝트: turc42/pylytics
    def drop(self, force=False):
        Table.drop(self, force)

        # Try to also drop the corresponding view if one exists.
        sql = self.DROP_VIEW.format(table=self.table_name)
        try:
            self.connection.execute(sql)
        except IntegrityError:
            self.log_error("Unable to drop view")
예제 #2
0
파일: queryproc.py 프로젝트: heikkiv/trak
def dropTable(**kwargs):
    Table.drop(kwargs['table'])