Skip to content

Commit

Permalink
remove unless change
Browse files Browse the repository at this point in the history
  • Loading branch information
CalvinKirs committed Aug 10, 2023
1 parent cb9c65f commit bb19616
Showing 1 changed file with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -161,8 +161,8 @@ public class CreateRoutineLoadStmt extends DdlStmt {
/**
* RoutineLoad support json data.
* Require Params:
* 1) dataFormat = "json"
* 2) jsonPaths = "$.XXX.xxx"
* 1) dataFormat = "json"
* 2) jsonPaths = "$.XXX.xxx"
*/
private String format = ""; //default is csv.
private String jsonPaths = "";
Expand Down Expand Up @@ -423,9 +423,9 @@ public void checkLoadProperties() throws UserException {
}
}
routineLoadDesc = new RoutineLoadDesc(columnSeparator, lineDelimiter, importColumnsStmt,
precedingImportWhereStmt, importWhereStmt,
partitionNames, importDeleteOnStmt == null ? null : importDeleteOnStmt.getExpr(), mergeType,
importSequenceStmt == null ? null : importSequenceStmt.getSequenceColName());
precedingImportWhereStmt, importWhereStmt,
partitionNames, importDeleteOnStmt == null ? null : importDeleteOnStmt.getExpr(), mergeType,
importSequenceStmt == null ? null : importSequenceStmt.getSequenceColName());
}

private void checkJobProperties() throws UserException {
Expand Down

0 comments on commit bb19616

Please sign in to comment.