removed the pest items for now.

This commit is contained in:
2022-10-23 16:55:29 -04:00
parent 786c69d840
commit 1829ff8c4a
5 changed files with 11 additions and 77 deletions

View File

@@ -1,8 +1,6 @@
whitespace = _{" " | "\t" | "\r" | "\n"}
action = {"create"}
object = {"database"}
char = _{ ASCII_ALPHANUMERIC | "_" }
whitespace = _{" " | "\t" | "\r" | "\n"}
name = {char+}
command = {whitespace* ~ action ~ whitespace+ ~ object ~ whitespace+ ~ name ~ whitespace* ~ ";" ~ whitespace*}
command = {"create database" ~ whitespace+ ~ name ~ ";"}
script = {command+}
file = _{SOI ~ script ~ EOI}