mirror of
https://github.com/aljazceru/turso.git
synced 2025-12-28 21:44:21 +01:00
fix clippy
This commit is contained in:
@@ -50,7 +50,7 @@ async fn main() {
|
||||
for i in 0..row.column_count() {
|
||||
let value = row.get_value(i).unwrap();
|
||||
match value {
|
||||
turso::Value::Null => values.push(format!("NULL")),
|
||||
turso::Value::Null => values.push("NULL".to_string()),
|
||||
turso::Value::Integer(x) => values.push(format!("{x}")),
|
||||
turso::Value::Real(x) => values.push(format!("{x}")),
|
||||
turso::Value::Text(x) => values.push(format!("'{x}'")),
|
||||
|
||||
Reference in New Issue
Block a user