BigDaMa / abstraction-layer

Apache License 2.0
4 stars 8 forks source link

Clean up postgres tables created by NADEEF #4

Closed FelixNeutatz closed 5 years ago

FelixNeutatz commented 6 years ago

As far as I can follow the code, the tables that have been created by NADEEF are not cleaned up after a run. We should add: cursor.execute("DROP TABLE tb_" + name + ";") cursor.execute("TRUNCATE violation;") cursor.execute("TRUNCATE repair;") cursor.execute("TRUNCATE audit;")

m-mahdavi commented 6 years ago

Yes. That is also neglected. Thanks.

m-mahdavi commented 5 years ago

Already done.