You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@calcite.apache.org by "Julian Hyde (Jira)" <ji...@apache.org> on 2021/03/11 01:41:00 UTC

[jira] [Commented] (CALCITE-4530) EnumerableWindow.copy(...) should adapt the rowType

    [ https://issues.apache.org/jira/browse/CALCITE-4530?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17299224#comment-17299224 ] 

Julian Hyde commented on CALCITE-4530:
--------------------------------------

How is it possible that some of the inputs have changed their type? Our assumption is that the input is an immutable RelNode.

> EnumerableWindow.copy(...) should adapt the rowType
> ---------------------------------------------------
>
>                 Key: CALCITE-4530
>                 URL: https://issues.apache.org/jira/browse/CALCITE-4530
>             Project: Calcite
>          Issue Type: Bug
>    Affects Versions: 1.26.0
>            Reporter: Thomas Rebele
>            Priority: Minor
>
> The method EnumerableWindow.copy(RelTraitSet, List<RelNode>) copies the row type. However, if some input fields have changed their type, then the row type of the new EnumerableWindow instance will be wrong.
> The following snippet provides a workaround:
> {code:java}
> private RelNode fixEnumerableWindowType(EnumerableWindow win, List<RelNode> newInputs)
> {
> 	RelDataType winType = win.getRowType();
> 	RelDataType newType = newInputs.get(0).getRowType();
> 	RelDataTypeFactory.Builder typeBuilder = new RelDataTypeFactory.Builder(win.getCluster().getTypeFactory());
> 	typeBuilder.addAll(newType.getFieldList());
> 	for (int i = newType.getFieldCount(); i < win.getRowType().getFieldCount(); i++)
> 	{
> 		typeBuilder.add(winType.getFieldList().get(i));
> 	}
> 	return RelBridge.createWindow(win.getCluster(), win.getTraitSet(), newInputs.get(0), win.constants,
> 		typeBuilder.build(), win.groups);
> }
> {code}
> (The implementation of RelBridge.createWindow is trivial).



--
This message was sent by Atlassian Jira
(v8.3.4#803005)