Create tests/correctness.rs that runs identical SQL on trdbte and rusqlite, comparing results:
- CREATE TABLE + INSERT + SELECT * (basic round-trip)
- WHERE with =, <, >, !=, AND, OR
- UPDATE with WHERE
- DELETE with WHERE
- SELECT with ORDER BY ASC/DESC
- SELECT with LIMIT
- DROP TABLE
- Integer, Float, Text, NULL value types
- Multiple tables
Each test: run SQL on both engines, assert same results.
Create tests/correctness.rs that runs identical SQL on trdbte and rusqlite, comparing results:
Each test: run SQL on both engines, assert same results.