Skip to content

Commit

Permalink
address conflicts
Browse files Browse the repository at this point in the history
  • Loading branch information
wecharyu committed Jan 22, 2024
1 parent f2d33e3 commit 9d037d6
Showing 1 changed file with 1 addition and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -285,9 +285,7 @@ public static String getUpdatedColumnSql(MPartitionColumnStatistics mStatsObj) {
if (mStatsObj.getNumNulls() != null) {
setStmt.append("\"NUM_NULLS\" = ? ,");
}
setStmt.append("\"ENGINE\" = ? ,");
setStmt.append("\"DB_NAME\" = ? ,");
setStmt.append("\"TABLE_NAME\" = ? ");
setStmt.append("\"ENGINE\" = ? ");
return setStmt.toString();
}

Expand Down Expand Up @@ -338,8 +336,6 @@ public static int initUpdatedColumnStatement(MPartitionColumnStatistics mStatsOb
pst.setObject(colIdx++, mStatsObj.getNumNulls());
}
pst.setString(colIdx++, mStatsObj.getEngine());
pst.setString(colIdx++, mStatsObj.getDbName());
pst.setString(colIdx++, mStatsObj.getTableName());
return colIdx;
}

Expand Down

0 comments on commit 9d037d6

Please sign in to comment.