marton-bod commented on a change in pull request #2472:
URL: https://github.com/apache/hive/pull/2472#discussion_r668604935
##########
File path:
ql/src/java/org/apache/hadoop/hive/ql/ddl/table/info/desc/formatter/TextDescTableFormatter.java
##########
@@ -100,6 +102,32 @@ public void describeTable(HiveConf conf, DataOutputStream
out, String columnPath
}
}
+ private void addPartitionTransformData(DataOutputStream out, Table table,
boolean isOutputPadded) throws IOException {
+ String partitionTransformData = "";
+ if (table.isNonNative() && table.getStorageHandler() != null &&
+ table.getStorageHandler().supportsPartitionTransform()) {
+
+ List<PartitionTransformSpec> partSpecDatas =
table.getStorageHandler().getPartitionTransformSpec(table);
Review comment:
nit: can we name this partSpecs, or something similar?
--
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]