We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 803459f commit 8b928ccCopy full SHA for 8b928cc
crates/duckdb/src/appender/mod.rs
@@ -161,9 +161,7 @@ impl Appender<'_> {
161
impl Drop for Appender<'_> {
162
fn drop(&mut self) {
163
if !self.app.is_null() {
164
- let _ = self.flush(); // can't safely handle failures here
165
unsafe {
166
- ffi::duckdb_appender_close(self.app);
167
ffi::duckdb_appender_destroy(&mut self.app);
168
}
169
0 commit comments