Comparing version 3.2.2 to 3.2.3
@@ -175,3 +175,3 @@ const { Query } = require('./query.js') | ||
} | ||
}).map(([x, fn]) => ([new RegExp('(^|[\\s(])' + x + '($|[\\s(])', 'i'), fn])) | ||
}).map(([x, fn]) => ([new RegExp('((?:^|[\\s(])' + x + '(?:$|[\\s(]))(?![\\s\\S]*\\1)', 'i'), fn])) | ||
@@ -178,0 +178,0 @@ function notTagged() { |
{ | ||
"name": "postgres", | ||
"version": "3.2.2", | ||
"version": "3.2.3", | ||
"description": "Fastest full featured PostgreSQL client for Node.js", | ||
@@ -5,0 +5,0 @@ "type": "module", |
@@ -175,3 +175,3 @@ import { Query } from './query.js' | ||
} | ||
}).map(([x, fn]) => ([new RegExp('(^|[\\s(])' + x + '($|[\\s(])', 'i'), fn])) | ||
}).map(([x, fn]) => ([new RegExp('((?:^|[\\s(])' + x + '(?:$|[\\s(]))(?![\\s\\S]*\\1)', 'i'), fn])) | ||
@@ -178,0 +178,0 @@ function notTagged() { |
@@ -228,5 +228,2 @@ import { Readable, Writable } from 'node:stream' | ||
parameters: any[]; | ||
// Disable user-side creation of PostgresError | ||
private constructor(); | ||
} | ||
@@ -484,2 +481,3 @@ | ||
| number | ||
| boolean | ||
| Date // serialized as `string` | ||
@@ -486,0 +484,0 @@ | readonly JSONValue[] |
195096
4856