basic skeletons of update and delete added

This commit is contained in:
2021-07-08 20:51:03 +02:00
parent e44b72ce53
commit ddb9441e23
9 changed files with 308 additions and 72 deletions

View File

@@ -21,6 +21,8 @@ enum class TokenType {
keyword_create,
keyword_table,
keyword_where,
keyword_delete,
keyword_update,
keyword_from,
keyword_insert,
keyword_into,
@@ -75,7 +77,8 @@ public:
TokenType prevTokenType();
static bool isRelationalOperator(TokenType token_type);
static bool isLogicalOperator(TokenType token_type);
static bool isLogicalOperator(TokenType token_type);
static bool isArithmeticalOperator(TokenType token_type);
private:
TokenType type(const std::string &token);