nareshpr commented on code in PR #5458: URL: https://github.com/apache/hive/pull/5458#discussion_r1769375105
########## ql/src/java/org/apache/hadoop/hive/ql/ddl/table/create/like/CreateTableLikeOperation.java: ########## @@ -155,6 +154,15 @@ private void setTableParameters(Table tbl, Map<String, String> originalPropertie if (desc.getTblProps() != null) { tbl.setParameters(desc.getTblProps()); } + String paramsStr = HiveConf.getVar(context.getConf(), HiveConf.ConfVars.DDL_CTL_PARAMETERS_WHITELIST); + if (paramsStr != null) { + Set<String> retainer = new HashSet<String>(Arrays.asList(paramsStr.split(","))); Review Comment: nit: 2 space -- 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. To unsubscribe, e-mail: gitbox-unsubscr...@hive.apache.org 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