spring-projects/spring-data-mongodb

`ParameterBindingJsonReader` doesn't consider regex options

Closed this issue · 0 comments

It looks like the following query doesn't take the options "i" into account
@query = { 'a': 'b', 'c': /^true$/i }

in the logs = { "a" : "b", "c" : { "$regularExpression" : { "pattern" : "^true$", "options" : ""}}}