1
0

[HUDI-2934] Optimize RequestHandler code style

close apache/hudi#4215
This commit is contained in:
fengli
2021-12-04 13:56:25 +08:00
committed by yuzhao.cyz
parent 1d4fb827e7
commit 568181a3e7
3 changed files with 10 additions and 10 deletions

View File

@@ -28,7 +28,6 @@ import java.util.List;
import java.util.Map;
import java.util.StringJoiner;
/**
* Represents the schema difference between the storage schema and hive table schema.
*/

View File

@@ -39,8 +39,9 @@ import java.util.List;
import java.util.Map;
import static org.apache.hudi.hive.util.HiveSchemaUtil.HIVE_ESCAPE_CHARACTER;
/*
This class adds functionality for all query based DDLExecutors. The classes extending it only have to provide runSQL(sql) functions.
/**
* This class adds functionality for all query based DDLExecutors. The classes extending it only have to provide runSQL(sql) functions.
*/
public abstract class QueryBasedDDLExecutor implements DDLExecutor {
private static final Logger LOG = LogManager.getLogger(QueryBasedDDLExecutor.class);