Socket
Socket
Sign inDemoInstall

clickhouse-ts

Package Overview
Dependencies
21
Maintainers
1
Versions
70
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 1.5.5 to 1.5.6

4

dist/src/clickhouse/Clickhouse.js

@@ -109,3 +109,3 @@ "use strict";

if (typeof fixedRowValue === 'number') {
return rowValue;
return fixedRowValue;
}

@@ -116,3 +116,3 @@ /**

if (typeof fixedRowValue === 'string') {
return sqlstring_1.default.escape(rowValue);
return sqlstring_1.default.escape(fixedRowValue);
}

@@ -119,0 +119,0 @@ /**

@@ -12,3 +12,3 @@ {

],
"version": "1.5.5",
"version": "1.5.6",
"license": "ISC",

@@ -15,0 +15,0 @@ "description": "Clickhouse client on TypeScript using redis caching queries",

@@ -114,3 +114,3 @@ import sqlstring from 'sqlstring'

if (typeof fixedRowValue === 'number') {
return rowValue as number
return fixedRowValue as number
}

@@ -122,3 +122,3 @@

if (typeof fixedRowValue === 'string') {
return sqlstring.escape(rowValue) as string
return sqlstring.escape(fixedRowValue) as string
}

@@ -125,0 +125,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