Reverting the change made in commit 8e62d1b19b9bd618c0d0bb5f5dec5cc24c7c1ef4
because Jenkins VM becomes unstable with too many core dumps.
diff --git a/core/sql/export/ComDiags.cpp b/core/sql/export/ComDiags.cpp
index 1be191f..a8d8e79 100644
--- a/core/sql/export/ComDiags.cpp
+++ b/core/sql/export/ComDiags.cpp
@@ -1410,7 +1410,6 @@
 // executor/TEST082
   if ((theError == CLI_TCB_EXECUTE_ERROR) ||  // 8816
       (theError == CLI_INTERNAL_ERROR   ) ||  // 8898
-      (theError == 2055   ) ||  // 2055
       (theError == EXE_INTERNAL_ERROR   ))    // 8001
   {
      // make a core-file to help understand this scenario.  But do 
@@ -1421,7 +1420,6 @@
      static bool corefile8816 = false;
      static bool corefile8898 = false;
      static bool corefile8001 = false;
-     static bool corefile2055 = true;
      if (!InternErrorMakesCorefileInitialized)
      {
        InternErrorMakesCorefileInitialized = true;
@@ -1438,7 +1436,6 @@
      }
      if ( (corefile8816 && theError == CLI_TCB_EXECUTE_ERROR) ||
           (corefile8898 && theError == CLI_INTERNAL_ERROR   ) ||
-          (corefile2055 && theError == 2055   ) ||
           (corefile8001 && theError == EXE_INTERNAL_ERROR   ) )
        genLinuxCorefile( (char *)
          "Generating core-file to capture internal error scenario.");