LibSQL: Rename TestSqlParser -> TestSqlStatementParser

A little bit clearer what is being tested now, since the expression
parser also lives in its own file.
This commit is contained in:
Timothy Flynn 2021-04-21 14:14:24 -04:00 committed by Andreas Kling
parent 733806b6a1
commit 6cbf88ad4c
Notes: sideshowbarker 2024-07-18 19:17:08 +09:00

View file

@ -239,4 +239,4 @@ TEST_CASE(delete_)
validate("WITH RECURSIVE table AS () DELETE FROM table;", { true, "table", {} }, {}, "table", {}, false, false, {});
}
TEST_MAIN(SqlParser)
TEST_MAIN(SqlStatementParser)