@malloydata/db-mysql 0.0.196 → 0.0.197-dev241009193540

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.
@@ -77,8 +77,9 @@ class MySQLConnection extends connection_1.BaseConnection {
77
77
  database: this.config.database,
78
78
  multipleStatements: true,
79
79
  decimalNumbers: true,
80
+ timezone: '+00:00',
80
81
  });
81
- this.connection.query(
82
+ await this.connection.query(
82
83
  // LTNOTE: Need to make the group_concat_max_len configurable.
83
84
  "set @@session.time_zone = 'UTC';" +
84
85
  // LTNOTE: for nesting this is the max buffer size. Currently set to 10M, have to figure out perf implications.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@malloydata/db-mysql",
3
- "version": "0.0.196",
3
+ "version": "0.0.197-dev241009193540",
4
4
  "license": "MIT",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -22,7 +22,7 @@
22
22
  "prepublishOnly": "npm run build"
23
23
  },
24
24
  "dependencies": {
25
- "@malloydata/malloy": "^0.0.196",
25
+ "@malloydata/malloy": "^0.0.197-dev241009193540",
26
26
  "@types/node": "^22.7.4",
27
27
  "fastestsmallesttextencoderdecoder": "^1.0.22",
28
28
  "luxon": "^3.5.0",