Files
usql/executor.h
2021-06-29 19:28:14 +02:00

22 lines
251 B
C++

#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:
};