mina-postgres-manager
Advanced tools
Comparing version 0.0.6 to 0.0.7
{ | ||
"name": "mina-postgres-manager", | ||
"version": "0.0.6", | ||
"version": "0.0.7", | ||
"description": "PostgresSQL Management Solution to wrap pg for mina etl", | ||
@@ -25,2 +25,3 @@ "main": "index.js", | ||
], | ||
"files": [ | ||
@@ -27,0 +28,0 @@ "License", |
@@ -46,3 +46,3 @@ (function() { | ||
PgConnectionManager.prototype.error = function(err) { | ||
return LOGGER.log('error occurred'); | ||
return LOGGER.log('error occurred' + err.message); | ||
}; | ||
@@ -63,2 +63,6 @@ | ||
query = this.findQuery(request[0].rQuery, request[0].rParam); | ||
if (query instanceof Error) { | ||
this.getResult(query, null, request); | ||
return this.error(query); | ||
} | ||
return client.query(query, (function(_this) { | ||
@@ -159,3 +163,3 @@ return function(err, result) { | ||
if (currentPosition == null) { | ||
throw "There is no namespace Query" + pNamespace; | ||
return new Error("There is no namespace Query" + pNamespace); | ||
} | ||
@@ -162,0 +166,0 @@ } |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
Major refactor
Supply chain riskPackage has recently undergone a major refactor. It may be unstable or indicate significant internal changes. Use caution when updating to versions that include significant changes.
Found 1 instance in 1 package
14400
346
0