New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

drizzle-orm-pg

Package Overview
Dependencies
Maintainers
3
Versions
170
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

drizzle-orm-pg - npm Package Compare versions

Comparing version 0.12.0-beta.18 to 0.12.0-beta.19

2

package.json
{
"name": "drizzle-orm-pg",
"version": "0.12.0-beta.18",
"version": "0.12.0-beta.19",
"description": "Drizzle ORM package for PostgreSQL database",

@@ -5,0 +5,0 @@ "main": "index.js",

@@ -45,4 +45,5 @@ "use strict";

const result = yield this.session.query(sql, params);
if (this.config.returning) {
return (0, utils_1.mapResultRow)(this.config.returning, result.rows);
const { returning } = this.config;
if (returning) {
return result.rows.map((row) => (0, utils_1.mapResultRow)(returning, row));
}

@@ -49,0 +50,0 @@ return result;

Sorry, the diff of this file is not supported yet

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