miklosgergely commented on a change in pull request #1756:
URL: https://github.com/apache/hive/pull/1756#discussion_r552905134
##########
File path:
ql/src/java/org/apache/hadoop/hive/ql/ddl/process/show/compactions/ShowCompactionsDesc.java
##########
@@ -31,9 +31,11 @@
public class ShowCompactionsDesc implements DDLDesc, Serializable {
private static final long serialVersionUID = 1L;
+ // @formatter:off
public static final String SCHEMA =
"compactionid,dbname,tabname,partname,type,state,hostname,workerid,enqueuetime,starttime,duration,hadoopjobid,errormessage#"
+
"string:string:string:string:string:string:string:string:string:string:string:string:string";
+ // @formatter:on
Review comment:
Removed.
##########
File path: ql/src/java/org/apache/hadoop/hive/ql/ddl/misc/msck/MsckAnalyzer.java
##########
@@ -68,7 +68,8 @@ public void analyzeInternal(ASTNode root) throws
SemanticException {
}
Table table = getTable(tableName);
- Map<Integer, List<ExprNodeGenericFuncDesc>> partitionSpecs =
ParseUtils.getFullPartitionSpecs(root, table, conf, false);
+ Map<Integer, List<ExprNodeGenericFuncDesc>> partitionSpecs =
ParseUtils.getFullPartitionSpecs(root, table, conf,
+ false);
Review comment:
Removed.
##########
File path:
ql/src/java/org/apache/hadoop/hive/ql/ddl/table/constraint/add/AlterTableAddConstraintAnalyzer.java
##########
@@ -79,7 +79,8 @@ protected void analyzeCommand(TableName tableName,
Map<String, String> partition
throw new
SemanticException(ErrorMsg.NOT_RECOGNIZED_CONSTRAINT.getMsg(constraintNode.getToken().getText()));
}
- Constraints constraints = new Constraints(primaryKeys, foreignKeys, null,
uniqueConstraints, null, checkConstraints);
+ Constraints constraints =
+ new Constraints(primaryKeys, foreignKeys, null, uniqueConstraints,
null, checkConstraints);
Review comment:
Removed.
##########
File path:
ql/src/java/org/apache/hadoop/hive/ql/ddl/table/AbstractAlterTableOperation.java
##########
@@ -35,7 +35,6 @@
import org.apache.hadoop.hive.ql.ddl.DDLOperationContext;
import org.apache.hadoop.hive.ql.ddl.DDLUtils;
import
org.apache.hadoop.hive.ql.ddl.table.constraint.add.AlterTableAddConstraintOperation;
-import org.apache.hadoop.hive.ql.exec.repl.util.ReplUtils;
Review comment:
Removed.
----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]