on_close is wrong should be do_close

This commit is contained in:
Benoist 2017-05-20 13:15:40 +02:00 committed by GitHub
parent 5eb85a98c6
commit a8f46a4a10

View file

@ -28,7 +28,7 @@ class SQLite3::Statement < DB::Statement
DB::ExecResult.new rows_affected, last_id
end
protected def on_close
protected def do_close
super
check LibSQLite3.finalize(self)
end