You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@calcite.apache.org by "ASF GitHub Bot (Jira)" <ji...@apache.org> on 2019/11/01 07:30:00 UTC

[jira] [Updated] (CALCITE-3469) Fix typo in SubstitutionVisitor#rowTypesAreEquivalent

     [ https://issues.apache.org/jira/browse/CALCITE-3469?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

ASF GitHub Bot updated CALCITE-3469:
------------------------------------
    Labels: pull-request-available  (was: )

> Fix typo in SubstitutionVisitor#rowTypesAreEquivalent
> -----------------------------------------------------
>
>                 Key: CALCITE-3469
>                 URL: https://issues.apache.org/jira/browse/CALCITE-3469
>             Project: Calcite
>          Issue Type: Bug
>          Components: core
>            Reporter: daimin
>            Priority: Minor
>              Labels: pull-request-available
>
> {code:java}
>   private boolean rowTypesAreEquivalent(
>       MutableRel rel0, MutableRel rel1, Litmus litmus) {
>     if (rel0.rowType.getFieldCount() != rel1.rowType.getFieldCount()) {
>       return litmus.fail("Mismatch for column count: [{}]", Pair.of(rel0, rel1));
>     }
>     for (Pair<RelDataTypeField, RelDataTypeField> pair
>         : Pair.zip(rel0.rowType.getFieldList(), rel0.rowType.getFieldList())) {
>       if (!pair.left.getType().equals(pair.right.getType())) {
>         return litmus.fail("Mismatch for column type: [{}]", Pair.of(rel0, rel1));
>       }
>     }
>     return litmus.succeed();
>   }
> {code}
> Where 
> {code:java}
> Pair.zip(rel0.rowType.getFieldList(), rel0.rowType.getFieldList())
> {code}
> should be 
> {code:java}
> Pair.zip(rel0.rowType.getFieldList(), rel1.rowType.getFieldList())
> {code}



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