1 2 3 4 5 6 7
use crate::{ast::*, common::symbol::Symbol}; /// Represents the SQL `SqlOption` structure in the AST. #[derive(Debug, Clone, PartialEq)] pub struct SqlOption { pub name: Symbol, pub value: Expr, }