Move init label to proper place in create vtab translation

This commit is contained in:
PThorpe92 2025-04-03 20:22:14 -04:00
parent 22fd3e9781
commit ae2be30204
No known key found for this signature in database
GPG key ID: 66DB3FBACBDD05CC
3 changed files with 4 additions and 5 deletions

View file

@ -4110,7 +4110,7 @@ pub fn op_parse_schema(
let conn = program.connection.upgrade();
let conn = conn.as_ref().unwrap();
let stmt = conn.prepare(format!(
"SELECT * FROM sqlite_schema WHERE {}",
"SELECT * FROM sqlite_schema WHERE {}",
where_clause
))?;
let mut schema = conn.schema.write();