summaryrefslogtreecommitdiff
path: root/jstests/basic3.js
blob: 2deee2b7e3dcb2a4f5a5de22ef8f660b95074dfc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24

t = db.getCollection( "foo_basic3" );

t.find( { "a.b" : 1 } ).toArray();

ok = false;

try{
    t.save( { "a.b" : 5 } );
    ok = false;
}
catch ( e ){
    ok = true;
}
assert( ok , ". in names aren't allowed doesn't work" );

try{
    t.save( { "x" : { "a.b" : 5 } } );
    ok = false;
}
catch ( e ){
    ok = true;
}
assert( ok , ". in embedded names aren't allowed doesn't work" );