mirror of
https://github.com/aljazceru/turso.git
synced 2026-02-21 16:05:17 +01:00
Makes clippy happy
This commit is contained in:
@@ -1107,8 +1107,7 @@ impl Limbo {
|
||||
match table_name {
|
||||
"sqlite_master" | "sqlite_schema" | "sqlite_temp_master" | "sqlite_temp_schema" => {
|
||||
let schema = format!(
|
||||
"CREATE TABLE {} (\n type text,\n name text,\n tbl_name text,\n rootpage integer,\n sql text\n);",
|
||||
table_name
|
||||
"CREATE TABLE {table_name} (\n type text,\n name text,\n tbl_name text,\n rootpage integer,\n sql text\n);",
|
||||
);
|
||||
let _ = self.writeln(&schema);
|
||||
return Ok(true);
|
||||
|
||||
Reference in New Issue
Block a user