somu-imply commented on code in PR #13892:
URL: https://github.com/apache/druid/pull/13892#discussion_r1128559650
##########
processing/src/main/java/org/apache/druid/segment/UnnestStorageAdapter.java:
##########
@@ -122,12 +121,16 @@ public Sequence<Cursor> makeCursors(
retVal = new UnnestColumnValueSelectorCursor(
retVal,
retVal.getColumnSelectorFactory(),
- dimensionToUnnest,
+ unnestColumn,
outputColumnName,
allowSet
);
}
- return retVal;
+ return PostJoinCursor.wrap(
Review Comment:
This is nice, there's no need to pass in the allowFilter inside the data
source now and the PostJoinCursor will apply the filters on unnested column
which are the post join filters
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]