mirror of
https://github.com/rustfs/rustfs.git
synced 2026-05-07 15:23:18 +08:00
9 lines
180 B
Rust
9 lines
180 B
Rust
use std::collections::VecDeque;
|
|
|
|
use super::ast::ExtStatement;
|
|
use crate::QueryResult;
|
|
|
|
pub trait Parser {
|
|
fn parse(&self, sql: &str) -> QueryResult<VecDeque<ExtStatement>>;
|
|
}
|