serenity/Tests/LibSQL
Tim Ledbetter 896d1e4f42 LibSQL: Handle statements with malformed exists expressions correctly
Previously, statements containing malformed exists expressions such as:

`INSERT INTO t(a) VALUES (SELECT 1)`;

could cause the parser to crash. The parser will now return an error
message instead.
2023-04-25 08:32:21 -04:00
..
CMakeLists.txt
TestSqlBtreeIndex.cpp LibSQL: Use Block::Index everywhere; rename pointer to block_index 2023-04-23 18:08:17 -04:00
TestSqlDatabase.cpp LibSQL: Rename Heap constants to match our code style 2023-04-23 18:08:17 -04:00
TestSqlExpressionParser.cpp
TestSqlHashIndex.cpp LibSQL: Use Block::Index everywhere; rename pointer to block_index 2023-04-23 18:08:17 -04:00
TestSqlStatementExecution.cpp LibSQL: Redesign heap storage to support arbitrary amounts of data 2023-04-23 18:08:17 -04:00
TestSqlStatementParser.cpp LibSQL: Handle statements with malformed exists expressions correctly 2023-04-25 08:32:21 -04:00
TestSqlValueAndTuple.cpp