-
Notifications
You must be signed in to change notification settings - Fork 1.9k
fix(tesseract): Fix issues with member expressions over multi stage #9416
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
Conversation
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## master #9416 +/- ##
==========================================
- Coverage 83.72% 76.56% -7.17%
==========================================
Files 229 400 +171
Lines 82614 105052 +22438
Branches 0 3708 +3708
==========================================
+ Hits 69172 80436 +11264
- Misses 13442 24180 +10738
- Partials 0 436 +436
Flags with carried forward coverage won't be shown. Click here to find out more. ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
packages/cubejs-schema-compiler/test/integration/postgres/member-expression.test.ts
Outdated
Show resolved
Hide resolved
| pub row_limit: Option<String>, | ||
| pub offset: Option<String>, | ||
| pub ungrouped: Option<bool>, | ||
| #[serde(rename = "exportAnnotatedSql")] |
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.
Btw, instead of tagging every property, you can tag the struct with #[serde(rename_all = "camelCase")] and it will do everything you need :) but it's just one line → code looks cleaner and more compact.
rust/cubesqlplanner/cubesqlplanner/src/planner/planners/multi_stage/member_query_planner.rs
Outdated
Show resolved
Hide resolved
.../cubesqlplanner/cubesqlplanner/src/planner/planners/multi_stage/multi_stage_query_planner.rs
Outdated
Show resolved
Hide resolved
KSDaemon
left a comment
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.
👍🏻 LGTM!
Check List