Socket
Socket
Sign inDemoInstall

postgres

Package Overview
Dependencies
0
Maintainers
1
Versions
43
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 3.4.2 to 3.4.3

11

cf/src/connection.js

@@ -114,3 +114,3 @@ import { Buffer } from 'node:buffer'

connect(query) {
initial = query
initial = query || true
reconnect()

@@ -539,7 +539,10 @@ },

if (needsTypes)
if (needsTypes) {
initial === true && (initial = null)
return fetchArrayTypes()
}
execute(initial)
options.shared.retries = retries = initial = 0
initial !== true && execute(initial)
options.shared.retries = retries = 0
initial = null
return

@@ -546,0 +549,0 @@ }

@@ -112,3 +112,3 @@ const net = require('net')

connect(query) {
initial = query
initial = query || true
reconnect()

@@ -537,7 +537,10 @@ },

if (needsTypes)
if (needsTypes) {
initial === true && (initial = null)
return fetchArrayTypes()
}
execute(initial)
options.shared.retries = retries = initial = 0
initial !== true && execute(initial)
options.shared.retries = retries = 0
initial = null
return

@@ -544,0 +547,0 @@ }

{
"name": "postgres",
"version": "3.4.2",
"version": "3.4.3",
"description": "Fastest full featured PostgreSQL client for Node.js",

@@ -5,0 +5,0 @@ "type": "module",

@@ -112,3 +112,3 @@ import net from 'net'

connect(query) {
initial = query
initial = query || true
reconnect()

@@ -537,7 +537,10 @@ },

if (needsTypes)
if (needsTypes) {
initial === true && (initial = null)
return fetchArrayTypes()
}
execute(initial)
options.shared.retries = retries = initial = 0
initial !== true && execute(initial)
options.shared.retries = retries = 0
initial = null
return

@@ -544,0 +547,0 @@ }

SocketSocket SOC 2 Logo

Product

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

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc