-
Notifications
You must be signed in to change notification settings - Fork 1.8k
feat(tesseract): Logical plan #9497
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: master
Are you sure you want to change the base?
Conversation
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## master #9497 +/- ##
===========================================
+ Coverage 58.47% 83.87% +25.40%
===========================================
Files 169 230 +61
Lines 13990 83825 +69835
Branches 2275 0 -2275
===========================================
+ Hits 8180 70305 +62125
- Misses 5495 13520 +8025
+ Partials 315 0 -315
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:
|
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.
👍🏻 🥇 This is great!
Left some typos...
} | ||
|
||
#[derive(Clone)] | ||
pub enum LogicalJoinItem { |
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.
Are any new variants expected or planned 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.
Yep, PreAggregationSource for example.
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.
Yep, pre aggregation for example
} | ||
}; | ||
|
||
let time_seira = TimeSeries::new( |
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.
let time_seira = TimeSeries::new( | |
let time_series = TimeSeries::new( |
let mut render_references = HashMap::new(); | ||
let mut select_builder = SelectBuilder::new(from.clone()); | ||
|
||
//We insert render reference for main time dimension (with the some granularity as in time series to avoid unnessesary date_tranc) |
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.
//We insert render reference for main time dimension (with the some granularity as in time series to avoid unnessesary date_tranc) | |
//We insert rendered reference for the main time dimension (with the same granularity as in time series to avoid unnecessary date_tranc) |
QualifiedColumnName::new(Some(root_alias.clone()), format!("date_from")), | ||
); | ||
|
||
//We also insert render reference for the base dimension of time dimension (i.e. without `_granularity` prefix to let other time dimensions make date_tranc) |
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.
//We also insert render reference for the base dimension of time dimension (i.e. without `_granularity` prefix to let other time dimensions make date_tranc) | |
//We also insert rendered reference for the base dimension of the time dimension (i.e. without `_granularity` prefix to let other time dimensions make date_tranc) |
2d7ac7e
to
37e2479
Compare
Check List