Skip to content

Commit

Permalink
fix:fix check style error
Browse files Browse the repository at this point in the history
  • Loading branch information
lujx98 committed Sep 29, 2023
1 parent 02b7b77 commit 4441e85
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,12 @@
import org.apache.shardingsphere.infra.metadata.database.schema.model.ShardingSphereSchema;
import org.apache.shardingsphere.infra.metadata.database.schema.model.ShardingSphereTable;

import java.util.*;
import java.util.Arrays;
import java.util.Collections;
import java.util.HashSet;
import java.util.Map.Entry;
import java.util.Optional;
import java.util.Set;

/**
* ShardingSphere statistics builder for MySQL.
Expand All @@ -40,7 +44,9 @@ public final class MySQLShardingSphereStatisticsBuilder implements ShardingSpher
private static final Set<String> CURRENT_SUPPORT = new HashSet<>(Arrays.asList("PARAMETERS"));

private static final String SHARDING_SPHERE = "shardingsphere";

private static final String INFORMATION_SCHEMA = "information_schema";

private static final String CLUSTER_INFORMATION = "cluster_information";

@Override
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,9 @@
import org.apache.shardingsphere.proxy.backend.context.ProxyContext;

import java.sql.SQLException;
import java.util.*;
import java.util.Collection;
import java.util.Map;
import java.util.Optional;

/**
* @author sheldon
Expand Down

0 comments on commit 4441e85

Please sign in to comment.