Projection expressions with single arguments e.g. {"$size": "$source"}#1150
Closed
kothar wants to merge 3 commits intoMorphiaOrg:masterfrom
kothar:projection-expressions
Closed
Projection expressions with single arguments e.g. {"$size": "$source"}#1150kothar wants to merge 3 commits intoMorphiaOrg:masterfrom kothar:projection-expressions
kothar wants to merge 3 commits intoMorphiaOrg:masterfrom
kothar:projection-expressions
Conversation
This fixes the case where a single argument expression such as {$size: “$source”} generates an arg array
containing a string rather than a DBObject. The current behaviour would try to unwrap the “$source” and cast it to
a DBObject, which caused a ClassCastException.
By moving the check for single arguments to the toDBObject method, it’s possible to preserve the existing behaviour
where DBObjects are unwrapped and used as the argument while also correctly handling string arguments.
Member
|
rebased and merged. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
After #667 was merged, expressions could be composed such as
Projection.expression("$size", Projection.projection("field"))Which would be translated to:
{"$size": ["$field"]}Though
$sizeonly accepts a single argument, an array containing a single string is also accepted.After @e95cdc3271408000bc57cf8f94c9468de55f1c43 (Location of change) a check was added to unwrap single-argument expressions, but it assumes that the type of the argument is a
DBObject. This fails in the above case, where the argument is a projection reference string.This PR adds a helper method for
$sizeprojection expressions, and a corresponding test to make sure the argument is unwrapped correctly from the arguments list.The fix for the
ClassCastExceptionmoves the unwrapping check to the caller oftoExpressionArgsso that the string value can be handled without a cast to DBObject causing an exception.