-
Notifications
You must be signed in to change notification settings - Fork 1.8k
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
chore(tesseract): Fix issue with FILTER_PARAMS and issue with multi-stage behavior of non multi-stage members #9211
chore(tesseract): Fix issue with FILTER_PARAMS and issue with multi-stage behavior of non multi-stage members #9211
Conversation
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## master #9211 +/- ##
=======================================
Coverage 83.69% 83.69%
=======================================
Files 228 228
Lines 82016 82016
=======================================
Hits 68640 68640
Misses 13376 13376
Flags with carried forward coverage won't be shown. Click here to find out more. ☔ View full report in Codecov by Sentry. |
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.
👍🏻 Left some questions and minor notes.
@@ -138,7 +138,7 @@ impl<IT: InnerTypes> ser::Serializer for NativeSerdeSerializer<IT> { | |||
} | |||
|
|||
fn serialize_none(self) -> Result<Self::Ok, Self::Error> { | |||
Ok(self.context.undefined()?) | |||
Ok(self.context.null()?) |
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 you sure null
is correct? In JS it will result in smth like: myVarOrProperty: null
instead of undefined
.
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.
Yes, I think it's justified here. In general, this change was made to normally pass parameters in filters, which can be either a string or null.
select * from visitor_checkins WHERE | ||
\${FILTER_PARAMS.visitor_checkins.created_at.filter('created_at')} AND | ||
\${FILTER_GROUP(FILTER_PARAMS.visitor_checkins.created_at.filter("(created_at - INTERVAL '3 DAY')"), FILTER_PARAMS.visitor_checkins.source.filter('source'))} | ||
select visitor_checkins.* from visitor_checkins left join visitors on visitor_checkins.visitor_id = visitors.id WHERE |
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.
Can you explain the change? Could you tell me why you didn't create another cube/test or why this one doesn't suit your needs?
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 an fix of an incorrect data model for tests. SECURITY_CONTEXT.filter
should work regardless of whether the cube has built a join for a particular query or not. Therefore, this filter must be written directly in the sql of the cube. This is one of the reasons why SECURITY_CONTEXT is deprecated. In the case of tesseract it led to the fact that in one of the tests fails, because tesseract knows how to omit unnecessary joins in subqueries. But this is not the error of tesseract, but of incorrect use of SECURITY_CONTEXT in the model.
@@ -2975,6 +3057,37 @@ describe('SQL Generation', () => { | |||
}] | |||
)); | |||
|
|||
if (getEnv('nativeSqlPlanner')) { |
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.
I think it would be more correct to mark the test as skipped in case of not using nativeSqlPlanner
instead of just avoiding it all.
if time_dimension.get_date_range().is_some() && result_granularity.is_some() { | ||
let granularity = time_dimension.get_granularity().unwrap(); //FIXME remove this unwrap | ||
let date_range = time_dimension.get_date_range().unwrap(); //FIXME remove this unwrap | ||
let seria = self |
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 seria = self | |
let series = self |
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.
done
let description = if childs.is_empty() || !has_multi_stage_members(&member, false)? { | ||
if has_multi_stage_members(&member, false)? { |
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.
is it correct to check the same condition has_multi_stage_members(&member, false)
twice?
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.
fixed
fn filters_to_native_filter_item( | ||
&self, | ||
filter: Option<Filter>, | ||
) -> Option<Vec<NativeFilterItem>> { | ||
if let Some(filter) = filter { | ||
let mut res = Vec::new(); | ||
for item in filter.items.iter() { | ||
res.push(self.filters_to_native_filter_item_impl(item)); | ||
} | ||
Some(res) | ||
} else { | ||
None | ||
} | ||
} |
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.
I think this one may be rewritten in more rust-idiomatic style, smth like:
fn filters_to_native_filter_item( | |
&self, | |
filter: Option<Filter>, | |
) -> Option<Vec<NativeFilterItem>> { | |
if let Some(filter) = filter { | |
let mut res = Vec::new(); | |
for item in filter.items.iter() { | |
res.push(self.filters_to_native_filter_item_impl(item)); | |
} | |
Some(res) | |
} else { | |
None | |
} | |
} | |
fn filters_to_native_filter_item( | |
&self, | |
filter: Option<Filter>, | |
) -> Option<Vec<NativeFilterItem>> { | |
filter.map(|filter| | |
filter.items.iter() | |
.map(|item| self.filters_to_native_filter_item_impl(item)) | |
.collect() | |
) | |
} |
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 a very temporary solution that will be removed within a month, so I don't see the point in doing much styling here yet :)
let mut native_items = Vec::new(); | ||
for itm in group.items.iter() { | ||
native_items.push(self.filters_to_native_filter_item_impl(itm)); | ||
} |
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.
Same here, more idiomatic style:
let mut native_items = Vec::new(); | |
for itm in group.items.iter() { | |
native_items.push(self.filters_to_native_filter_item_impl(itm)); | |
} | |
let native_items: Vec<_> = group.items | |
.iter() | |
.map(|itm| self.filters_to_native_filter_item_impl(itm)) | |
.collect(); |
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.
Some as above
06ae94b
to
4a80bc5
Compare
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
Issue Reference this PR resolves
[For example #12]
Description of Changes Made (if issue reference is not provided)
[Description goes here]