use sqlparser::tokenizer::Span;
use crate::dialect::DialectId;
use crate::lint::schema::Schema;
pub struct LintCtx<'a> {
pub src: DialectId,
pub dst: Option<DialectId>,
pub stmt_index: usize,
pub stmt_span: Span,
pub source_text: &'a str,
pub schema: &'a Schema,
}