Skip to content

Commit

Permalink
binder/chore: remove drop test (#811)
Browse files Browse the repository at this point in the history
Signed-off-by: caicancai <[email protected]>
  • Loading branch information
caicancai authored Nov 22, 2023
1 parent a5794ff commit bd8fe1c
Showing 1 changed file with 0 additions and 19 deletions.
19 changes: 0 additions & 19 deletions src/binder/drop.rs
Original file line number Diff line number Diff line change
Expand Up @@ -79,22 +79,3 @@ impl Binder {
}
}
}

#[cfg(test)]
mod tests {
use std::sync::Arc;

use crate::catalog::RootCatalog;
use crate::parser::parse;

#[test]
fn bind_drop_table() {
let catalog = Arc::new(RootCatalog::new());
catalog
.add_table(0, "mytable".into(), vec![], false, vec![])
.unwrap();

let stmts = parse("drop table mytable").unwrap();
println!("{:?}", stmts)
}
}

0 comments on commit bd8fe1c

Please sign in to comment.