summaryrefslogtreecommitdiff
path: root/jstests/core/insert_long_index_key.js
blob: 934b51b0369917fc06440522bc8298a9fda1df41 (plain)
1
2
3
4
5
6
7
8
9
10
t = db.insert_long_index_key;
t.drop();

var s = new Array(2000).toString();
t.ensureIndex({x: 1});

t.insert({x: 1});
t.insert({x: s});

assert.eq(1, t.count());