AMashenkov commented on code in PR #5536:
URL: https://github.com/apache/ignite-3/pull/5536#discussion_r2028555813
##########
modules/sql-engine/src/main/java/org/apache/ignite/internal/sql/engine/util/ProjectedTuple.java:
##########
@@ -45,49 +41,47 @@ public class FormatAwareProjectedTuple extends
AbstractProjectedTuple {
* an index of field in resulting projection, and an element of
the array at that index is an index of column in original
* tuple.
*/
- public FormatAwareProjectedTuple(InternalTuple delegate, int[] projection)
{
- super(delegate, projection);
+ public ProjectedTuple(InternalTuple delegate, int[] projection) {
+ super((InternalTupleEx) delegate, projection);
Review Comment:
Fixed
--
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]