Github user zlei929 commented on a diff in the pull request:
https://github.com/apache/trafodion/pull/1578#discussion_r190774048
--- Diff: core/sql/sqlcomp/CmpSeabaseDDLcommentOn.cpp ---
@@ -229,6 +229,16 @@ void
CmpSeabaseDDL::doSeabaseCommentOn(StmtDDLCommentOn *commentOnNode,
enum ComObjectType enMDObjType = COM_UNKNOWN_OBJECT;
ComObjectName objectName(commentOnNode->getObjectName());
+ //we can not comment on native hive table.
+ if (str_cmp(toUpper(currCatName.data()), "HIVE", 4) == 0)
--- End diff --
Thank you for your reminding~! i will create a new pull request after
changed this.
---