摘要: ## 1 整体文件列表 ```shell . ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── Cargo.toml ├── GOVERNANCE.md ├── LICENSE ├── Makefile ├── README.md ├── benches 阅读全文
posted @ 2023-08-02 00:24 NoobSir 阅读(46) 评论(0) 推荐(0) 编辑
摘要: # 01-01 hello-sql执行流程 该示例提供了一个将Sql解析为语法树并返回`select 'hello';`中字符串的逻辑 其核心逻辑如下: ```rust pub fn run(&self, sql: &str) -> Result, Error> { // parse -- 借用开源 阅读全文
posted @ 2023-08-02 00:22 NoobSir 阅读(10) 评论(0) 推荐(0) 编辑