chotchki / feophant

A PostgreSQL inspired SQL database written in Rust.
GNU Affero General Public License v3.0
27 stars 1 forks source link

Implement the ability to drop tables #34

Open chotchki opened 2 years ago

chotchki commented 2 years ago

Right now pgbench fails on an initial attempt to drop the tables. We should add drop support.

drop table if exists pgbench_accounts, pgbench_branches, pgbench_history, pgbench_tellers

chotchki commented 2 years ago

Doing more thinking, this will require triggers so that everything gets cleaned up okay.