diff --git a/src/inserter.rs b/src/inserter.rs index 69b1e23..186f3ff 100644 --- a/src/inserter.rs +++ b/src/inserter.rs @@ -162,8 +162,7 @@ where T: Serialize, { self.uncommitted_entries += 1; - let fut = self.insert.write(row); - async move { fut.await } + self.insert.write(row) } /// Checks limits and ends a current `INSERT` if they are reached.