Skip to content

Commit

Permalink
[hotfix] Mark Column#rename internal
Browse files Browse the repository at this point in the history
  • Loading branch information
dawidwys authored and afedulov committed Jan 27, 2025
1 parent 4d357c0 commit 035307e
Showing 1 changed file with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@

package org.apache.flink.table.catalog;

import org.apache.flink.annotation.Internal;
import org.apache.flink.annotation.PublicEvolving;
import org.apache.flink.table.expressions.ResolvedExpression;
import org.apache.flink.table.types.DataType;
Expand Down Expand Up @@ -136,6 +137,7 @@ public String asSummaryString() {
public abstract Column copy(DataType newType);

/** Returns a copy of the column with a replaced name. */
@Internal
public abstract Column rename(String newName);

@Override
Expand Down

0 comments on commit 035307e

Please sign in to comment.