From 4eefaf421bfeddf040d96a3dafb12e09673423d7 Mon Sep 17 00:00:00 2001 From: Antonin Kral Date: Sun, 31 Jan 2010 08:32:52 +0100 Subject: Imported Upstream version 1.3.1 --- jstests/array1.js | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 jstests/array1.js (limited to 'jstests/array1.js') diff --git a/jstests/array1.js b/jstests/array1.js new file mode 100644 index 0000000..4409b7b --- /dev/null +++ b/jstests/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 -- cgit v1.2.3