Drop do_close in pool statements

This commit is contained in:
Brian J. Cardiff 2023-12-02 00:02:31 -03:00
parent 7a19a5da87
commit 0780916845
2 changed files with 0 additions and 7 deletions

View File

@ -9,9 +9,6 @@ module DB
super
end
protected def do_close
end
# builds a statement over a real connection
private def build_statement : Statement
conn = @db.pool.checkout

View File

@ -9,10 +9,6 @@ module DB
super
end
protected def do_close
# unprepared statements do not need to be release in each connection
end
# builds a statement over a real connection
private def build_statement : Statement
conn = @db.pool.checkout