You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@calcite.apache.org by "Michael Mior (JIRA)" <ji...@apache.org> on 2019/03/01 18:06:00 UTC

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

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

Michael Mior commented on CALCITE-2875:
---------------------------------------

Fixed in [24a7a1b|https://github.com/apache/calcite/commit/24a7a1b49bc4fb9f089031625f1a7ee052524125].

> 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
>          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)