Using Groovy 2.3.6, GMongo 1.2, Java 1.8, MongoDB 3.0.0...
I'm trying to use doEval()
to get a count of documents in a collection. (For various reasons I want to use doEval()
rather than count()
). Invoking doEval()
with a single line string argument returns retval with a double value of 1.0 and ok with a double value of 1.0 which is what I expect:
def str = "db.configurations.count({name: 'Mike'})"
database.doEval(str)
If the argument is on multiple lines retval that is returned is null (ok is 1.0).
def str = "db.configurations.count({\nname: 'Mike'\n})"
database.doEval(str)
I expect doEval to return a retval of 1.0 not null, like in the first example. Is this a bug or is my expectation incorrect? Should doEval()
support a multiline string argument?