You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@calcite.apache.org by "Chunwei Lei (Jira)" <ji...@apache.org> on 2020/04/10 11:55:00 UTC

[jira] [Updated] (CALCITE-3909) RelMdMinRowCount doesn't take into account UNION DISTINCT

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

Chunwei Lei updated CALCITE-3909:
---------------------------------
    Description: 
When computing minRowCount for Union, it doesn't task into account UNION DISTINCT.
{code:java}
public Double getMinRowCount(Union rel, RelMetadataQuery mq) {
  double rowCount = 0.0;
  for (RelNode input : rel.getInputs()) {
    Double partialRowCount = mq.getMinRowCount(input);
    if (partialRowCount != null) {
      rowCount += partialRowCount;
    }
  }
  return rowCount;
}
{code}

> RelMdMinRowCount doesn't take into account UNION DISTINCT 
> ----------------------------------------------------------
>
>                 Key: CALCITE-3909
>                 URL: https://issues.apache.org/jira/browse/CALCITE-3909
>             Project: Calcite
>          Issue Type: Bug
>          Components: core
>    Affects Versions: 1.22.0
>            Reporter: Chunwei Lei
>            Assignee: Chunwei Lei
>            Priority: Major
>
> When computing minRowCount for Union, it doesn't task into account UNION DISTINCT.
> {code:java}
> public Double getMinRowCount(Union rel, RelMetadataQuery mq) {
>   double rowCount = 0.0;
>   for (RelNode input : rel.getInputs()) {
>     Double partialRowCount = mq.getMinRowCount(input);
>     if (partialRowCount != null) {
>       rowCount += partialRowCount;
>     }
>   }
>   return rowCount;
> }
> {code}



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