[performance] remove the pragma optimize analysis limit on connection close (#3386)

This commit is contained in:
kim
2024-10-04 17:05:42 +00:00
committed by GitHub
parent 23b6d2cc64
commit f550f596fa

View File

@@ -112,7 +112,7 @@ func (c *sqliteConn) Close() (err error) {
raw := c.connIface.(sqlite3driver.Conn).Raw()
// see: https://www.sqlite.org/pragma.html#pragma_optimize
const onClose = "PRAGMA analysis_limit=1000; PRAGMA optimize;"
const onClose = "PRAGMA optimize;"
_ = raw.Exec(onClose)
// Finally, close.