sql-parser
sql-parser copied to clipboard
SQL Parser for C++. Building C++ object structure from SQL statements.
The SQL standard allows parentheses around all query expressions (SELECTs) in a UNION. The Bison parser cannot currently handle queries like `(SELECT 1) UNION (SELECT 1)`, let alone `((SELECT 1)...
The interval was not allowed to be a column data type. With this patch we add this support. We add support for the pseudo literals CURRENT_TIME, CURRENT_TIMESTAMP, CURRENT_DATE. Also, we...
Hello, I'm currently developing on Windows using MinGW64 as my toolchain to compile this library. During testing, I encountered a thread-related crash when executing SQL parsing in a background thread....