This repository was archived by the owner on Oct 18, 2023. It is now read-only.
Push down query analysis to libsql? #501
Open
Description
We currently parse SQL statements twice: once for query analysis and once for SQLite. However, the SQLite C API has a sqlite3_stmt_readonly()
function for checking if a query modifies the database or it. Let's see if we can implement similar APIs in libsql.git
to essentially push down query analysis to the library and avoid the double parsing.