You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: standalone-metastore/metastore-server/src/main/java/org/apache/hadoop/hive/metastore/StatObjectConverter.java
+1-5Lines changed: 1 addition & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -285,9 +285,7 @@ public static String getUpdatedColumnSql(MPartitionColumnStatistics mStatsObj) {
285
285
if (mStatsObj.getNumNulls() != null) {
286
286
setStmt.append("\"NUM_NULLS\" = ? ,");
287
287
}
288
-
setStmt.append("\"ENGINE\" = ? ,");
289
-
setStmt.append("\"DB_NAME\" = ? ,");
290
-
setStmt.append("\"TABLE_NAME\" = ? ");
288
+
setStmt.append("\"ENGINE\" = ? ");
291
289
returnsetStmt.toString();
292
290
}
293
291
@@ -338,8 +336,6 @@ public static int initUpdatedColumnStatement(MPartitionColumnStatistics mStatsOb
0 commit comments