22 lines
251 B
C++
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:
|
|
|
|
};
|