mirror of
https://github.com/rustfs/rustfs.git
synced 2026-07-27 08:38:58 +00:00
63ef986bac
Signed-off-by: junxiang Mu <1948535941@qq.com>
9 lines
203 B
Rust
9 lines
203 B
Rust
use datafusion::sql::sqlparser::ast::Statement;
|
|
|
|
#[derive(Debug, Clone, PartialEq, Eq)]
|
|
pub enum ExtStatement {
|
|
/// ANSI SQL AST node
|
|
SqlStatement(Box<Statement>),
|
|
// we can expand command
|
|
}
|