Skip to content

Commit 12fca43

Browse files
authored
Escape \0 in identifiers and literals
1 parent 3e34816 commit 12fca43

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

packages/pg/lib/client.js

+3-1
Original file line numberDiff line numberDiff line change
@@ -444,7 +444,7 @@ class Client extends EventEmitter {
444444

445445
// Ported from PostgreSQL 9.2.4 source code in src/interfaces/libpq/fe-exec.c
446446
escapeIdentifier(str) {
447-
return '"' + str.replace(/"/g, '""') + '"'
447+
return '"' + str.replace(/["\0]/g, '""') + '"'
448448
}
449449

450450
// Ported from PostgreSQL 9.2.4 source code in src/interfaces/libpq/fe-exec.c
@@ -459,6 +459,8 @@ class Client extends EventEmitter {
459459
} else if (c === '\\') {
460460
escaped += c + c
461461
hasBackslash = true
462+
} else if (c === '\0') {
463+
// Ignore it
462464
} else {
463465
escaped += c
464466
}

0 commit comments

Comments
 (0)