Details
-
Bug
-
Status: Closed
-
Major - P3
-
Resolution: Fixed
-
2.1
-
None
-
None
Description
I can save a key with a "dot" using the latest Java client.
This should not be allowed.
import com.mongodb.Mongo;
|
import com.mongodb.DBCollection;
|
import com.mongodb.BasicDBObject;
|
import com.mongodb.DB;
|
|
public class Test {
|
|
public static void main(String[] args) throws Exception {
|
|
Mongo m = new Mongo();
|
DB db = m.getDB("test_db_1");
|
DBCollection coll = db.getCollection("test_collection_1");
|
|
BasicDBObject doc = new BasicDBObject();
|
doc.put("name.first", "First Name");
|
doc.put("name.last", "Last Name");
|
coll.insert(doc);
|
|
}
|
}
|
Attachments
Issue Links
- related to
-
SERVER-30575 Please add escaping convention for dot and dollar signs!
-
- Backlog
-