summaryrefslogtreecommitdiff
path: root/jstests/mmap_v1
diff options
context:
space:
mode:
authorMark Benvenuto <mark.benvenuto@mongodb.com>2014-12-16 13:32:46 -0500
committerMark Benvenuto <mark.benvenuto@mongodb.com>2014-12-30 11:52:20 -0500
commit4580fe1b3e01d8651fcec46522e506d82b0824c0 (patch)
tree22d6bcd9594ae395fe59ad2e62886b66fe2ecedf /jstests/mmap_v1
parent3a06b24bc5b09d2a849b61a535a36214ed02bff1 (diff)
downloadmongo-4580fe1b3e01d8651fcec46522e506d82b0824c0.tar.gz
SERVER-16061: remove "text" command
Diffstat (limited to 'jstests/mmap_v1')
-rw-r--r--jstests/mmap_v1/fts1.js29
1 files changed, 0 insertions, 29 deletions
diff --git a/jstests/mmap_v1/fts1.js b/jstests/mmap_v1/fts1.js
deleted file mode 100644
index 6bd138d6c25..00000000000
--- a/jstests/mmap_v1/fts1.js
+++ /dev/null
@@ -1,29 +0,0 @@
-load( "jstests/libs/fts.js" );
-
-t = db.text1;
-t.drop();
-
-// this test requires usePowerOf2Sizes to be off
-db.createCollection( t.getName(), {"usePowerOf2Sizes" : false } );
-assert.eq(0, t.stats().userFlags);
-
-assert.eq( [] , queryIDS( t , "az" ) , "A0" );
-
-t.save( { _id : 1 , x : "az b c" } );
-t.save( { _id : 2 , x : "az b" } );
-t.save( { _id : 3 , x : "b c" } );
-t.save( { _id : 4 , x : "b c d" } );
-
-assert.eq(t.stats().userFlags, 0,
- "A new collection should not have power-of-2 storage allocation strategy");
-t.ensureIndex( { x : "text" } );
-assert.eq(t.stats().userFlags, 1,
- "Creating a text index on a collection should change the allocation strategy " +
- "to power-of-2.");
-
-assert.eq( [1,2,3,4] , queryIDS( t , "c az" ) , "A1" );
-assert.eq( [4] , queryIDS( t , "d" ) , "A2" );
-
-idx = db.system.indexes.findOne( { ns: t.getFullName(), "weights.x" : 1 } )
-assert( idx.v >= 1, tojson( idx ) )
-assert( idx.textIndexVersion >= 1, tojson( idx ) )