This commit is contained in:
Diego Imbert
2026-03-27 15:10:25 +01:00
parent f6978bbca5
commit 7c0af24b4a

View File

@@ -939,7 +939,7 @@ async fn drop_forked_datatable_databases(
Ok((client, connection)) => {
let join_handle = tokio::spawn(async move { connection.await });
match client
.execute(&format!("DROP DATABASE IF EXISTS \"{}\"", db_to_drop), &[])
.execute(&format!("DROP DATABASE \"{}\"", db_to_drop), &[])
.await
{
Ok(_) => tracing::info!("Dropped resource database '{}'", db_to_drop),