Files
mongo/jstests/core/insert_long_index_key.js
Randolph Tan 5595b94560 SERVER-12127 migrate js tests to jscore suite when not related to writes
Moved test jstest/[a-i].js -> jstests/core/ and made changes to comply with write command api
2014-02-28 16:26:33 -05:00

11 lines
174 B
JavaScript

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() );