marton-bod commented on a change in pull request #3076:
URL: https://github.com/apache/hive/pull/3076#discussion_r822525523



##########
File path: 
ql/src/java/org/apache/hadoop/hive/ql/ddl/table/info/desc/formatter/TextDescTableFormatter.java
##########
@@ -390,7 +391,7 @@ private void displayAllParameters(Map<String, String> 
params, StringBuilder tabl
     Collections.sort(keys);
     for (String key : keys) {
       String value = params.get(key);
-      if (TABLE_IS_CTAS.equals(key)) {
+      if (TABLE_IS_CTAS.equals(key) || TABLE_IS_CTLT.equals(key)) {

Review comment:
       Yes, currently that's the case. In order to have the table property 
available during the MetaHook#rollback, it's gotta be part of the Table object. 
It's just filtered out during describe commands and such but the value is there 
in the props. Do you think that's a dealbreaker?




-- 
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: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]



---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to