summaryrefslogtreecommitdiff
path: root/jstests/core/array1.js
diff options
context:
space:
mode:
Diffstat (limited to 'jstests/core/array1.js')
-rw-r--r--jstests/core/array1.js14
1 files changed, 14 insertions, 0 deletions
diff --git a/jstests/core/array1.js b/jstests/core/array1.js
new file mode 100644
index 00000000000..4409b7bb4d3
--- /dev/null
+++ b/jstests/core/array1.js
@@ -0,0 +1,14 @@
+t = db.array1
+t.drop()
+
+x = { a : [ 1 , 2 ] };
+
+t.save( { a : [ [1,2] ] } );
+assert.eq( 1 , t.find( x ).count() , "A" );
+
+t.save( x );
+delete x._id;
+assert.eq( 2 , t.find( x ).count() , "B" );
+
+t.ensureIndex( { a : 1 } );
+assert.eq( 2 , t.find( x ).count() , "C" ); // TODO SERVER-146