1 2 3 4 5 6 7 8 9
use crate::ast::*; /// Represents the SQL `DropTableStmt` structure in the AST. #[derive(Debug, Clone, PartialEq)] pub struct DropTableStmt { pub if_exist: bool, pub temporary: bool, pub names: Vec<ObjectName>, pub behaviour: Option<DropBehavior>, }