mirror of
https://github.com/ncruces/go-sqlite3.git
synced 2026-01-12 05:59:14 +00:00
11 lines
189 B
Go
11 lines
189 B
Go
package testcfg
|
|
|
|
import (
|
|
"github.com/ncruces/go-sqlite3"
|
|
"github.com/tetratelabs/wazero"
|
|
)
|
|
|
|
func init() {
|
|
sqlite3.RuntimeConfig = wazero.NewRuntimeConfig().WithMemoryLimitPages(1024)
|
|
}
|