summaryrefslogtreecommitdiff
path: root/jstests/core/dbcase2.js
blob: f9973d98837aaa540cf1233edcc4487a3ae3846f (plain)
1
2
3
4
5
6
7
8
9
// SERVER-2111 Check that an in memory db name will block creation of a db with a similar but differently cased name.

a = db.getSisterDB( "dbcase2test_dbnamea" )
b = db.getSisterDB( "dbcase2test_dbnameA" )

a.c.count();
assert.throws( function() { b.c.count() } );

assert.eq( -1, db.getMongo().getDBNames().indexOf( "dbcase2test_dbnameA" ) );