drop table added

This commit is contained in:
2021-07-27 19:29:04 +02:00
parent 6d4fe43a3b
commit 7d91319f0b
11 changed files with 3282 additions and 161 deletions

View File

@@ -162,6 +162,9 @@ namespace usql {
if (token == "create")
return TokenType::keyword_create;
if (token == "drop")
return TokenType::keyword_drop;
if (token == "where")
return TokenType::keyword_where;
@@ -338,6 +341,9 @@ namespace usql {
case TokenType::keyword_create:
txt = "create";
break;
case TokenType::keyword_drop:
txt = "drop";
break;
case TokenType::keyword_where:
txt = "where";
break;