ueberdb2 4.2.60 → 4.2.61
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 +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -297088,7 +297088,7 @@ class Postgres_db extends AbstractDatabase {
|
|
|
297088
297088
|
}
|
|
297089
297089
|
const functions = replaceVALs.map((v) => (cb) => this.db.query(this.upsertStatement, v, cb));
|
|
297090
297090
|
const removeFunction = (callback) => {
|
|
297091
|
-
if ((removeVALs.length
|
|
297091
|
+
if (!(removeVALs.length < 1)) {
|
|
297092
297092
|
this.db.query(removeSQL, removeVALs, callback);
|
|
297093
297093
|
}
|
|
297094
297094
|
else {
|