dengzhhu653 commented on code in PR #5458: URL: https://github.com/apache/hive/pull/5458#discussion_r1776162194
########## ql/src/java/org/apache/hadoop/hive/ql/ddl/table/create/like/CreateTableLikeOperation.java: ########## @@ -155,6 +158,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); Review Comment: you can make this change after: ``` if (desc.getTblProps() != null) { tbl.setParameters(desc.getTblProps()); } ``` so it will be overwritten if some are specified explicitly -- 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