@malloydata/db-mysql 0.0.338 → 0.0.340
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.
- package/dist/mysql_connection.js +1 -2
- package/package.json +2 -2
package/dist/mysql_connection.js
CHANGED
|
@@ -127,9 +127,8 @@ class MySQLConnection extends connection_1.BaseConnection {
|
|
|
127
127
|
return false;
|
|
128
128
|
}
|
|
129
129
|
getDigest() {
|
|
130
|
-
var _a;
|
|
131
130
|
const { host, port, user, database } = this.config;
|
|
132
|
-
return (0, malloy_1.makeDigest)('mysql', host
|
|
131
|
+
return (0, malloy_1.makeDigest)('mysql', host, port !== undefined ? String(port) : undefined, user, database, this.config.setupSQL);
|
|
133
132
|
}
|
|
134
133
|
canPersist() {
|
|
135
134
|
return true;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@malloydata/db-mysql",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.340",
|
|
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.
|
|
25
|
+
"@malloydata/malloy": "0.0.340",
|
|
26
26
|
"@types/node": "^22.7.4",
|
|
27
27
|
"fastestsmallesttextencoderdecoder": "^1.0.22",
|
|
28
28
|
"luxon": "^3.5.0",
|