1 2 3 4 5 6 7 8 9 10 11 12 13 14
use crate::common::symbol::Symbol; #[derive(Debug, Clone)] pub struct SessionContext { pub current_database: Option<Symbol>, } impl SessionContext { pub fn new() -> Self { Self { current_database: None, } } }