Skip to content

Commit

Permalink
resolve conflict
Browse files Browse the repository at this point in the history
  • Loading branch information
vinlee19 committed Nov 19, 2024
1 parent e3844bd commit 135b420
Showing 1 changed file with 2 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -79,9 +79,7 @@
import org.apache.doris.nereids.trees.plans.commands.insert.InsertOverwriteTableCommand;
import org.apache.doris.nereids.trees.plans.commands.refresh.RefreshCatalogCommand;

/**
* CommandVisitor.
*/
/** CommandVisitor. */
public interface CommandVisitor<R, C> {

R visitCommand(Command command, C context);
Expand Down Expand Up @@ -268,7 +266,6 @@ default R visitShowLastInsertCommand(ShowLastInsertCommand showLastInsertCommand

default R visitShowPartitionIdCommand(ShowPartitionIdCommand showPartitionIdCommand, C context) {
return visitCommand(showPartitionIdCommand, context);

}

default R visitShowVariablesCommand(ShowVariablesCommand showVariablesCommand, C context) {
Expand Down Expand Up @@ -304,7 +301,7 @@ default R visitShowStorageEnginesCommand(ShowStorageEnginesCommand showStorageEn
}

default R visitShowCreateMaterializedViewCommand(ShowCreateMaterializedViewCommand showCreateMtlzViewCommand,
C context) {
C context) {
return visitCommand(showCreateMtlzViewCommand, context);
}

Expand Down

0 comments on commit 135b420

Please sign in to comment.