usecrate::common::symbol::Symbol;/// Represents a `USE` statement.
////// This AST node captures the parameters for switching the current active database,
/// corresponding to `USE name;`
#[derive(Debug, Clone, PartialEq)]pubstructUseDatabaseStmt{/// The name of the database to switch to.
pubdatabase_name: Symbol,
}