You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@trafodion.apache.org by su...@apache.org on 2016/10/11 03:57:42 UTC

[5/7] incubator-trafodion git commit: Fix build failure due to recent change, plus one that slipped through

Fix build failure due to recent change, plus one that slipped through


Project: http://git-wip-us.apache.org/repos/asf/incubator-trafodion/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-trafodion/commit/49bc9c5e
Tree: http://git-wip-us.apache.org/repos/asf/incubator-trafodion/tree/49bc9c5e
Diff: http://git-wip-us.apache.org/repos/asf/incubator-trafodion/diff/49bc9c5e

Branch: refs/heads/master
Commit: 49bc9c5edf65cc290f55a5ac96018615ec1304ab
Parents: 777178a
Author: Suresh Subbiah <su...@apache.org>
Authored: Mon Oct 10 15:51:24 2016 +0000
Committer: Suresh Subbiah <su...@apache.org>
Committed: Mon Oct 10 15:51:24 2016 +0000

----------------------------------------------------------------------
 core/sql/SqlCompilerDebugger/ItemExpressionView.cpp | 4 ++--
 core/sql/generator/Generator.cpp                    | 1 +
 2 files changed, 3 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-trafodion/blob/49bc9c5e/core/sql/SqlCompilerDebugger/ItemExpressionView.cpp
----------------------------------------------------------------------
diff --git a/core/sql/SqlCompilerDebugger/ItemExpressionView.cpp b/core/sql/SqlCompilerDebugger/ItemExpressionView.cpp
index 2422886..0619f6b 100644
--- a/core/sql/SqlCompilerDebugger/ItemExpressionView.cpp
+++ b/core/sql/SqlCompilerDebugger/ItemExpressionView.cpp
@@ -78,8 +78,8 @@ void ItemExpressionView::DisplayItemExprRoot(void *tree)
   ExprNode *qTree = (ExprNode *) tree;
   if (qTree != NULL)
   {
-      LIST(ExprNode *) localExpList;
-      LIST(NAString) localLabelList;
+    LIST(ExprNode *) localExpList(NULL);
+    LIST(NAString) localLabelList(NULL);
       ExprNode *currExpr;
       NAString currLabel;
       CollIndex numEntries;

http://git-wip-us.apache.org/repos/asf/incubator-trafodion/blob/49bc9c5e/core/sql/generator/Generator.cpp
----------------------------------------------------------------------
diff --git a/core/sql/generator/Generator.cpp b/core/sql/generator/Generator.cpp
index b9e534f..1417a55 100644
--- a/core/sql/generator/Generator.cpp
+++ b/core/sql/generator/Generator.cpp
@@ -103,6 +103,7 @@ Generator::Generator(CmpContext* currentCmpContext) :
     ,stoiList_(wHeap())  
     ,insertNodesList_(wHeap())  
     ,avgVarCharSizeList_(wHeap())  
+    ,trafSimTableInfoList_(wHeap())
 {
   // nothing generated yet.
   genObj = 0;