Socket
Socket
Sign inDemoInstall

mina-postgres-manager

Package Overview
Dependencies
Maintainers
1
Versions
15
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

mina-postgres-manager - npm Package Compare versions

Comparing version 0.0.6 to 0.0.7

3

package.json
{
"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 @@ }

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc