chore: Setup code skeleton of datanode

This commit is contained in:
evenyag
2022-04-20 18:38:00 +08:00
parent ced9a7c97f
commit 1fa0b4e3f9
25 changed files with 215 additions and 1 deletions
+9
View File
@@ -0,0 +1,9 @@
[package]
name = "sql"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
sqlparser = "0.16.0"
+1
View File
@@ -0,0 +1 @@
+3
View File
@@ -0,0 +1,3 @@
mod ast;
mod parser;
mod planner;
+1
View File
@@ -0,0 +1 @@
+1
View File
@@ -0,0 +1 @@