summaryrefslogtreecommitdiff
path: root/jstests/core/index_bigkeys_update.js
diff options
context:
space:
mode:
authorEliot Horowitz <eliot@10gen.com>2014-05-19 16:05:41 -0400
committerEliot Horowitz <eliot@10gen.com>2014-05-19 16:05:41 -0400
commitdb0e1a91fdce2fa43584408a87d637cfe4bcc2ec (patch)
tree8cbefae4f2f43f41f4a512f5b8f250b1662dfbbf /jstests/core/index_bigkeys_update.js
parentf2bfd36a6f3eb7e7e2587268be3cc12636703d42 (diff)
downloadmongo-db0e1a91fdce2fa43584408a87d637cfe4bcc2ec.tar.gz
SERVER-13637: add CollectionCatalogEntry, start Database layer
Diffstat (limited to 'jstests/core/index_bigkeys_update.js')
-rw-r--r--jstests/core/index_bigkeys_update.js3
1 files changed, 3 insertions, 0 deletions
diff --git a/jstests/core/index_bigkeys_update.js b/jstests/core/index_bigkeys_update.js
index 6bdaf033542..2c4ef685219 100644
--- a/jstests/core/index_bigkeys_update.js
+++ b/jstests/core/index_bigkeys_update.js
@@ -14,5 +14,8 @@ assert.eq( 1, t.count() );
assert.writeError(t.update( {} , { $set : { x : bigString } } ));
assert.eq( 1, t.count() );
+/* SERVER-13951
assert.eq( "asd", t.findOne().x ); // make sure doc is the old version
assert.eq( "asd", t.findOne( { _id : 0 } ).x ); // make sure doc is the old version
+*/
+t.drop(); // SERVER-13951 - remove this line