ashish-kumar-sharma commented on a change in pull request #1528: URL: https://github.com/apache/hive/pull/1528#discussion_r498900655
########## File path: standalone-metastore/metastore-server/src/main/java/org/apache/hadoop/hive/metastore/utils/MetaStoreServerUtils.java ########## @@ -1554,4 +1555,32 @@ public static Partition createMetaPartitionObject(Table tbl, Map<String, String> } return tpart; } + + /** + * Validate bucket columns should belong to table columns. + * @param sd StorageDescriptor of given table + * @return true if bucket columns are empty or belong to table columns else false + */ + public static boolean validateBucketColumns(StorageDescriptor sd) { + List<String> columnNames = getColumnNames(sd.getCols()); + if(CollectionUtils.isNotEmpty(sd.getBucketCols()) && CollectionUtils.isNotEmpty(columnNames)){ Review comment: Done ---------------------------------------------------------------- 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: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: gitbox-unsubscr...@hive.apache.org For additional commands, e-mail: gitbox-h...@hive.apache.org