ueberdb2 4.2.23 → 4.2.24
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/index.js +3 -0
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -282121,6 +282121,9 @@ const Database$7 = class Database extends AbstractDatabase {
|
|
|
282121
282121
|
if ("speeds" in this._mysqlSettings) {
|
|
282122
282122
|
delete this._mysqlSettings.speeds;
|
|
282123
282123
|
}
|
|
282124
|
+
if ("filename" in this._mysqlSettings) {
|
|
282125
|
+
delete this._mysqlSettings.filename;
|
|
282126
|
+
}
|
|
282124
282127
|
this._pool = mysql2Exports.createPool(this._mysqlSettings);
|
|
282125
282128
|
const { database, charset } = this._mysqlSettings;
|
|
282126
282129
|
const sqlCreate = `${'CREATE TABLE IF NOT EXISTS `store` ( ' +
|