@hatk/hatk 0.0.1-alpha.14 → 0.0.1-alpha.16

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/dist/db.js +2 -2
  2. package/package.json +1 -1
package/dist/db.js CHANGED
@@ -115,8 +115,8 @@ async function all(sql, ...params) {
115
115
  }
116
116
  export async function initDatabase(dbPath, tableSchemas, ddlStatements) {
117
117
  instance = await DuckDBInstance.create(dbPath === ':memory:' ? undefined : dbPath, {
118
- memory_limit: '256MB',
119
- threads: '1',
118
+ memory_limit: '1GB',
119
+ threads: '4',
120
120
  });
121
121
  con = await instance.connect();
122
122
  readCon = await instance.connect();
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@hatk/hatk",
3
- "version": "0.0.1-alpha.14",
3
+ "version": "0.0.1-alpha.16",
4
4
  "license": "MIT",
5
5
  "bin": {
6
6
  "hatk": "dist/cli.js"