summaryrefslogtreecommitdiff
path: root/jstests/ne3.js
diff options
context:
space:
mode:
authorHari Khalsa <hkhalsa@10gen.com>2013-10-22 13:38:55 -0400
committerHari Khalsa <hkhalsa@10gen.com>2013-10-24 16:41:06 -0400
commit73fda21577693c645d643c57418d4bd5b2adb31e (patch)
tree39eb868a94886512f07ad13e77124f63809981de /jstests/ne3.js
parent9d7c6dd9a2a662c741a9f960d9c6b2da1968d532 (diff)
downloadmongo-73fda21577693c645d643c57418d4bd5b2adb31e.tar.gz
SERVER-10026 migrate count/distinct/group/delete, turn spigot fully on
Diffstat (limited to 'jstests/ne3.js')
-rw-r--r--jstests/ne3.js5
1 files changed, 3 insertions, 2 deletions
diff --git a/jstests/ne3.js b/jstests/ne3.js
index 489f47aec0d..8a695f6bd74 100644
--- a/jstests/ne3.js
+++ b/jstests/ne3.js
@@ -3,10 +3,11 @@
t = db.jstests_ne3;
t.drop();
-assert.throws( function() { t.findOne( { t: { $ne: /a/ } } ); } );
+// QUERY_MIGRATION
+//assert.throws( function() { t.findOne( { t: { $ne: /a/ } } ); } );
assert.throws( function() { t.findOne( { t: { $gt: /a/ } } ); } );
assert.throws( function() { t.findOne( { t: { $gte: /a/ } } ); } );
assert.throws( function() { t.findOne( { t: { $lt: /a/ } } ); } );
assert.throws( function() { t.findOne( { t: { $lte: /a/ } } ); } );
-assert.eq( 0, t.count( { t: { $in: [ /a/ ] } } ) ); \ No newline at end of file
+assert.eq( 0, t.count( { t: { $in: [ /a/ ] } } ) );