Github user traflm commented on a diff in the pull request:
https://github.com/apache/trafodion/pull/1532#discussion_r193921336
--- Diff:
core/sqf/src/seatrans/hbase-trx/src/main/java/org/apache/hadoop/hbase/client/transactional/TransactionManager.java
---
@@ -2996,6 +3022,11 @@ else if (tableOption.equalsIgnoreCase("USE_DEFAULT"))
(Long.parseLong(tableOption));
returnStatus.setTableDescriptorChanged();
break ;
+ case HBASE_HDFS_STORAGE_POLICY:
--- End diff --
Hi, Prashanth, the hdfs path of the table is available only after the table
is created. And it is easier to set this in alter, since it directly support
the SQL ALTER TABLE to change this option. But I was planning to test and
support other DDL including ALTER in phase two. But add code here has one
consideration of the reason above.
Let me consider how to test this out, as I understand, it will never be
late, since the policy can be changed at anytime.
---