Skip to content

Commit

Permalink
[CALCITE-4127] Remove final from AbstractRelNode#getRelTypeName
Browse files Browse the repository at this point in the history
  • Loading branch information
rubenada authored and hsyuan committed Jul 17, 2020
1 parent 66ce217 commit cdf8678
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -179,7 +179,8 @@ public void register(RelOptPlanner planner) {
Util.discard(planner);
}

public final String getRelTypeName() {
// It is not recommended to override this method, but sub-classes can do it at their own risk.
public String getRelTypeName() {
String cn = getClass().getName();
int i = cn.length();
while (--i >= 0) {
Expand Down

0 comments on commit cdf8678

Please sign in to comment.