You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
log::warn!("No DATABASE_URL provided, and {:?} is not writeable. Using a temporary in-memory SQLite database. All the data created will be lost when this server shuts down.", configuration_directory);
450
+
log::warn!("No DATABASE_URL provided, and {configuration_directory:?} is not writeable. Using a temporary in-memory SQLite database. All the data created will be lost when this server shuts down.");
run_csv_import(connection, csv_import, request).await.with_context(|| format!("Failed to import the CSV file {:?} into the table {:?}", csv_import.uploaded_file, csv_import.table_name))?;
58
58
},
59
59
ParsedStatement::StmtWithParams(stmt) => {
@@ -269,7 +269,7 @@ fn parse_single_sql_result(
269
269
DbItem::Row(super::sql_to_json::row_to_json(&r))
270
270
}
271
271
Ok(Either::Left(res)) => {
272
-
log::debug!("Finished query with result: {:?}", res);
272
+
log::debug!("Finished query with result: {res:?}");
0 commit comments