initial commit

This commit is contained in:
2021-06-29 19:28:14 +02:00
commit 5c7908ac4b
20 changed files with 913 additions and 0 deletions

21
executor.h Normal file
View File

@@ -0,0 +1,21 @@
#pragma once
#include "parser.h"
#include <string>
class Executor {
private:
public:
Executor();
bool execute(Node& node);
private:
bool execute_create_table(CreateTableNode& node);
bool execute_select(Node& node);
private:
};