Details
-
Bug
-
Resolution: Done
-
Minor - P4
-
None
-
None
Description
situation jeff ran into:
doing a where clause that starts with a newline
db.test.find().where("""
this.x < 2 ||
this.x > 40""")
returns no results even when the almost equivalent case
db.test.find().where("""this.x < 2 ||
this.x > 40""")
does.