summaryrefslogtreecommitdiff
path: root/jstests/insert_long_index_key.js
blob: 6379c36fb4a331e2d66b1bbbbfe925dc85885d66 (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() );