-
Notifications
You must be signed in to change notification settings - Fork 11
ENGTAI-68310 : Adding logic and fixing order #232
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
You can check-in your integration tests (in a generic way without specifying any proprietary information) so that any changes to this flow would be caught early on.
* IN" functionality by combining the $not and $in operators. | ||
*/ | ||
@AllArgsConstructor | ||
public class MongoStandardExprNotInRelationalFilterParser implements MongoRelationalFilterParser { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
My bad on the naming suggestion earlier. Since we are special casing "NOT_IN", it is no longer a standard one.
public class MongoStandardExprNotInRelationalFilterParser implements MongoRelationalFilterParser { | |
public class MongoNotInExprRelationalFilterParser implements MongoRelationalFilterParser { |
I have added test for Mongo provider |
* environment IDs. | ||
*/ | ||
@ParameterizedTest | ||
@ArgumentsSource(MongoProvider.class) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Anything we build in document-store needs to be compatible with Postgres too to avoid digressing them too much. Could you please sync. with the respective team to get this working on Postgres too? I believe that should be a smaller fix too.
Description
There a was a bug when using NOT_IN in the array pipeline.