-
Notifications
You must be signed in to change notification settings - Fork 25
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
fix: sequelize mode support HAVING, and select fields raw sql support #187
Conversation
Codecov Report
@@ Coverage Diff @@
## master #187 +/- ##
=======================================
Coverage 96.79% 96.80%
=======================================
Files 39 39
Lines 2963 2969 +6
=======================================
+ Hits 2868 2874 +6
Misses 95 95
Continue to review full report at Codecov.
|
const condition = parseObjectValue(value); | ||
normalizeLogicalCondition(condition, name); | ||
result.push(condition); | ||
const conds = parseObjectValue(value); |
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.
maybe we can use parseOperatorCondition(name, value)
here
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.
tried a bit, with no luck. I'd need more time to investigate on this.
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.
parseOperatorCondition
seems can't parse logical operator and return object not object array
a081356
to
c191bd5
Compare
No description provided.