Signed-off-by: junxiang Mu <1948535941@qq.com>
This commit is contained in:
junxiang Mu
2025-03-12 13:11:54 +00:00
parent 31697a55b6
commit 63ef986bac
33 changed files with 3660 additions and 3167 deletions
+19
View File
@@ -0,0 +1,19 @@
pub mod ast;
pub mod datasource;
pub mod dispatcher;
pub mod execution;
pub mod function;
pub mod logical_planner;
pub mod parser;
pub mod session;
#[derive(Clone)]
pub struct Context {
// maybe we need transfer some info?
}
#[derive(Clone)]
pub struct Query {
context: Context,
content: String,
}