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 2019/03/21 05:28:00 UTC

[jira] [Closed] (CALCITE-2875) Some misspellings in RelOptListener

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

Chunwei Lei closed CALCITE-2875.
--------------------------------

> Some misspellings in RelOptListener
> -----------------------------------
>
>                 Key: CALCITE-2875
>                 URL: https://issues.apache.org/jira/browse/CALCITE-2875
>             Project: Calcite
>          Issue Type: Bug
>            Reporter: Chunwei Lei
>            Assignee: Chunwei Lei
>            Priority: Major
>              Labels: pull-request-available
>             Fix For: 1.19.0
>
>          Time Spent: 20m
>  Remaining Estimate: 0h
>
> There are some misspellings in RelOptListener:
> /**
>    * Notifies this listener that a relational expression has been chosen as
>    * part of the final implementation of the query plan. After the plan is
>    * {color:red}copmlete{color}, this is called one more time with null for the rel.
>    *
>    * @param event details about the event
>    */
>   void relChosen(RelChosenEvent event);
>   /** Event indicating that a planner rule has been {color:red}attemptedd{color}. */
>   class RuleAttemptedEvent extends RuleEvent {
>     private final boolean before;
>     public RuleAttemptedEvent(
>         Object eventSource,
>         RelNode rel,
>         RelOptRuleCall ruleCall,
>         boolean before) {
>       super(eventSource, rel, ruleCall);
>       this.before = before;
>     }
>     public boolean isBefore() {
>       return before;
>     }
>   }



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)