Remove connection pool min size. Remove need to create empty mod introspection tables if introspection is not enabled. Remove connection pool min size. Closes #3207

* Remove all references to prepared statements
* remove sessionInitWaitGroup
This commit is contained in:
kaidaguerre
2023-03-09 16:55:08 +00:00
committed by GitHub
parent a46c32e31e
commit 92396d77c0
22 changed files with 71 additions and 264 deletions

View File

@@ -27,8 +27,7 @@ func WrapError(err error) error {
if err == nil {
return nil
}
return HandleCancelError(
WrapPreparedStatementError(err))
return HandleCancelError(err)
}
func FailOnError(err error) {