Update rust/ql/test/library-tests/frameworks/rusqlite/main.rs

Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
This commit is contained in:
Mathew Payne
2025-01-23 13:32:36 +00:00
committed by GitHub
parent eac63a3840
commit c69bb15335

View File

@@ -18,7 +18,7 @@ fn main() -> Result<(), Box<dyn std::error::Error>> {
connection.execute( // $ sql-sink
"CREATE TABLE person (
id SERIAL PRIMARY KEY,
id INTEGER PRIMARY KEY AUTOINCREMENT,
name VARCHAR NOT NULL,
age INT NOT NULL
)",