summaryrefslogtreecommitdiff
path: root/jstests/core/string_with_nul_bytes.js
blob: 718a13646663d25151fe5bfcce142e63d8accbb3 (plain)
1
2
3
4
5
6
7
8
9
// SERVER-6649 - issues round-tripping strings with embedded NUL bytes

let t = db.string_with_nul_bytes.js;
t.drop();

let string = "string with a NUL (\0) byte";
t.insert({str: string});
assert.eq(t.findOne().str, string);
assert.eq(t.findOne().str.length, string.length);  // just to be sure