fix clippy

This commit is contained in:
Nikita Sivukhin
2025-07-30 14:38:29 +04:00
parent aad0460bd1
commit f3da874fd5

View File

@@ -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}'")),