Skip to content

Commit

Permalink
format class name style
Browse files Browse the repository at this point in the history
  • Loading branch information
vinlee19 committed Dec 19, 2024
1 parent 9397b47 commit 334a03f
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -563,7 +563,7 @@
import org.apache.doris.nereids.trees.plans.commands.ShowCollationCommand;
import org.apache.doris.nereids.trees.plans.commands.ShowConfigCommand;
import org.apache.doris.nereids.trees.plans.commands.ShowConstraintsCommand;
import org.apache.doris.nereids.trees.plans.commands.ShowConvertLscCommand;
import org.apache.doris.nereids.trees.plans.commands.ShowConvertLSCCommand;
import org.apache.doris.nereids.trees.plans.commands.ShowCreateCatalogCommand;
import org.apache.doris.nereids.trees.plans.commands.ShowCreateDatabaseCommand;
import org.apache.doris.nereids.trees.plans.commands.ShowCreateMTMVCommand;
Expand Down Expand Up @@ -5139,7 +5139,7 @@ public LogicalPlan visitShowQueryProfile(ShowQueryProfileContext ctx) {
@Override
public LogicalPlan visitShowConvertLsc(ShowConvertLscContext ctx) {
MultipartIdentifierContext database = ctx.database;
return database == null ? new ShowConvertLscCommand(null) : new ShowConvertLscCommand(database.getText());
return database == null ? new ShowConvertLSCCommand(null) : new ShowConvertLSCCommand(database.getText());
}

@Override
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -40,12 +40,12 @@
/**
* Represents the command for SHOW CONVERT LIGHT SCHEMA CHANGE PROCESS .
*/
public class ShowConvertLscCommand extends ShowCommand implements ForwardNoSync {
public class ShowConvertLSCCommand extends ShowCommand implements ForwardNoSync {

private static final int COLUMN_LENGTH = 30;
private final String dbName;

public ShowConvertLscCommand(String dbName) {
public ShowConvertLSCCommand(String dbName) {
super(PlanType.SHOW_CONVERT_LSC_COMMAND);
this.dbName = dbName;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@
import org.apache.doris.nereids.trees.plans.commands.ShowCollationCommand;
import org.apache.doris.nereids.trees.plans.commands.ShowConfigCommand;
import org.apache.doris.nereids.trees.plans.commands.ShowConstraintsCommand;
import org.apache.doris.nereids.trees.plans.commands.ShowConvertLscCommand;
import org.apache.doris.nereids.trees.plans.commands.ShowConvertLSCCommand;
import org.apache.doris.nereids.trees.plans.commands.ShowCreateCatalogCommand;
import org.apache.doris.nereids.trees.plans.commands.ShowCreateDatabaseCommand;
import org.apache.doris.nereids.trees.plans.commands.ShowCreateMTMVCommand;
Expand Down Expand Up @@ -675,9 +675,8 @@ default R visitShowQueryProfileCommand(ShowQueryProfileCommand showQueryProfileC
return visitCommand(showQueryProfileCommand, context);
}

default R visitShowConvertLscCommand(ShowConvertLscCommand showConvertLscCommand,
C context) {
return visitCommand(showConvertLscCommand, context);
default R visitShowConvertLscCommand(ShowConvertLSCCommand showConvertLSCCommand, C context) {
return visitCommand(showConvertLSCCommand, context);
}

default R visitSwitchCommand(SwitchCommand switchCommand, C context) {
Expand Down

0 comments on commit 334a03f

Please sign in to comment.