LibSQL: Create a very barebones SQL parser

This parser builds on the LibSQL lexer and currently only allows users
to parse 'CREATE TABLE' statements.
This commit is contained in:
Timothy Flynn 2021-04-18 17:38:38 -04:00 committed by Andreas Kling
commit 377992d33e
Notes: sideshowbarker 2024-07-18 19:20:32 +09:00
4 changed files with 418 additions and 0 deletions

View file

@ -1,5 +1,6 @@
set(SOURCES
Lexer.cpp
Parser.cpp
Token.cpp
)