implement Drop for Statement

This commit is contained in:
Nikita Sivukhin
2025-10-06 13:27:42 +04:00
parent 48ca3864b8
commit a3ca5f6bf2

View File

@@ -2741,6 +2741,12 @@ impl Statement {
}
}
impl Drop for Statement {
fn drop(&mut self) {
self.reset();
}
}
pub type Row = vdbe::Row;
pub type StepResult = vdbe::StepResult;