Remove default param for heap
Project: http://git-wip-us.apache.org/repos/asf/trafodion/repo Commit: http://git-wip-us.apache.org/repos/asf/trafodion/commit/de7240e8 Tree: http://git-wip-us.apache.org/repos/asf/trafodion/tree/de7240e8 Diff: http://git-wip-us.apache.org/repos/asf/trafodion/diff/de7240e8 Branch: refs/heads/master Commit: de7240e8c715c60a1c16f4ce01f405cfb0865d38 Parents: eeeabbc Author: Sandhya Sundaresan <[email protected]> Authored: Thu Jan 18 23:00:14 2018 +0000 Committer: Sandhya Sundaresan <[email protected]> Committed: Thu Jan 18 23:00:14 2018 +0000 ---------------------------------------------------------------------- core/sql/exp/ExpLOBaccess.h | 2 +- core/sql/exp/ExpLOBprocess.cpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/trafodion/blob/de7240e8/core/sql/exp/ExpLOBaccess.h ---------------------------------------------------------------------- diff --git a/core/sql/exp/ExpLOBaccess.h b/core/sql/exp/ExpLOBaccess.h index 200091a..9604aab 100644 --- a/core/sql/exp/ExpLOBaccess.h +++ b/core/sql/exp/ExpLOBaccess.h @@ -589,7 +589,7 @@ class ExLobGlobals { public : - ExLobGlobals(NAHeap *lobHeap=NULL); + ExLobGlobals(NAHeap *lobHeap); ~ExLobGlobals(); Ex_Lob_Error initialize(); http://git-wip-us.apache.org/repos/asf/trafodion/blob/de7240e8/core/sql/exp/ExpLOBprocess.cpp ---------------------------------------------------------------------- diff --git a/core/sql/exp/ExpLOBprocess.cpp b/core/sql/exp/ExpLOBprocess.cpp index 9177902..e117160 100644 --- a/core/sql/exp/ExpLOBprocess.cpp +++ b/core/sql/exp/ExpLOBprocess.cpp @@ -575,7 +575,7 @@ Lng32 main(Lng32 argc, char *argv[]) // setup log4cxx QRLogger::initLog4cxx(QRLogger::QRL_LOB); // initialize lob globals - lobGlobals = new ExLobGlobals(); + lobGlobals = new ExLobGlobals(NULL); if (lobGlobals == NULL) return -1;
