浏览代码

HPCC-10135 Add missing entries for unimplemented self denormalize

Signed-off-by: Gavin Halliday <gavin.halliday@lexisnexis.com>
Gavin Halliday 11 年之前
父节点
当前提交
72977bc38e
共有 2 个文件被更改,包括 4 次插入0 次删除
  1. 2 0
      common/thorhelper/commonext.cpp
  2. 2 0
      common/thorhelper/thorcommon.cpp

+ 2 - 0
common/thorhelper/commonext.cpp

@@ -203,6 +203,8 @@ MODULE_INIT(INIT_PRIORITY_STANDARD)
     kindArray[TAKsmartjoin] = "smartjoin";
     kindArray[TAKsmartdenormalize] = "smartdenormalize";
     kindArray[TAKsmartdenormalizegroup] = "smartdenormalizegroup";
+    kindArray[TAKselfdenormalize] = "selfdenormalize";
+    kindArray[TAKselfdenormalizegroup] = "selfdenormalizegroup";
 
 //Non standard
     kindArray[TAKsubgraph] = "subgraph";

+ 2 - 0
common/thorhelper/thorcommon.cpp

@@ -774,6 +774,8 @@ extern const char * getActivityText(ThorActivityKind kind)
     case TAKsmartjoin:              return "Smart Join";
     case TAKsmartdenormalize:       return "Smart Denormalize";
     case TAKsmartdenormalizegroup:  return "Smart Denormalize Group";
+    case TAKselfdenormalize:       return "Self Denormalize";
+    case TAKselfdenormalizegroup:  return "Self Denormalize Group";
     }
     throwUnexpected();
 }