Github user selvaganesang commented on a diff in the pull request:
https://github.com/apache/trafodion/pull/1481#discussion_r176114627
--- Diff: core/sql/common/ComSmallDefs.h ---
@@ -609,47 +609,59 @@ enum ComColumnClass { COM_UNKNOWN_CLASS
#define COM_ALTERED_USER_COLUMN_LIT "C "
enum ComColumnDefaultClass { COM_CURRENT_DEFAULT
+ , COM_CURRENT_UT_DEFAULT
--- End diff --
Were you able to do the development/testing of this change without
re-initializing trafodion in your work space? I ran the following query in
the metadata in my work space. I believe the enum value is being stored, If so,
this change can cause incompatibility. Jenkins tests always initialize
trafodion.
>>select distinct default_class from "_MD_".columns ;
DEFAULT_CLASS
-------------
1
3
2
5
7
6
---