Github user DaveBirdsall commented on a diff in the pull request:
https://github.com/apache/trafodion/pull/1437#discussion_r166124919
--- Diff: core/sqf/export/include/trafconf/trafconfig.h ---
@@ -67,26 +68,64 @@
#define PERSIST_RETRIES_KEY "PERSIST_RETRIES"
#define PERSIST_ZONES_KEY "PERSIST_ZONES"
-enum TC_STORAGE_TYPE {
+#define TC_ROOT_NODE "/trafodion"
+#define TC_INSTANCE_NODE "/instance"
+
+typedef enum {
+ ProcessType_Undefined=0, // No process type as been
defined
+ ProcessType_TSE, // Identifies a Table Storage
Engine (DP2)
+ ProcessType_DTM, // Identifies a Distributed
Transaction Monitor process
+ ProcessType_ASE, // Identifies a Audit Storage
Engine (ADP)
--- End diff --
Is this used anymore?
---