You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@trafodion.apache.org by sa...@apache.org on 2016/07/07 20:36:48 UTC

[5/7] incubator-trafodion git commit: Fix core file issue with udr test accessing null lobglobal. Commenting out hanging executor test that needs other fixes (JIRA 2083)

Fix core file issue with udr test accessing null lobglobal.
Commenting out hanging executor test that needs other fixes (JIRA 2083)


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

Branch: refs/heads/master
Commit: 5f99c6be1ad243fba1647883d575bb16a2aceab8
Parents: 6857070
Author: Sandhya Sundaresan <sa...@apache.org>
Authored: Wed Jul 6 04:19:57 2016 +0000
Committer: Sandhya Sundaresan <sa...@apache.org>
Committed: Wed Jul 6 04:19:57 2016 +0000

----------------------------------------------------------------------
 core/sql/executor/ex_root.cpp               | 2 +-
 core/sql/regress/tools/runregr_executor.ksh | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-trafodion/blob/5f99c6be/core/sql/executor/ex_root.cpp
----------------------------------------------------------------------
diff --git a/core/sql/executor/ex_root.cpp b/core/sql/executor/ex_root.cpp
index e2738d5..db2fc1a 100644
--- a/core/sql/executor/ex_root.cpp
+++ b/core/sql/executor/ex_root.cpp
@@ -2777,7 +2777,7 @@ Int32 ex_root_tcb::checkTransBeforeExecute(ExTransaction *myTrans,
     mayPinAudit_ = myTrans->mayAlterDb() ? true : false;
     mayLock_ = myTrans->mayHoldLock() ? true : false;
 
-    masterGlob->lobGlobals()->xnId() = myTrans->getTransid();
+    
 
   }
   return 0;

http://git-wip-us.apache.org/repos/asf/incubator-trafodion/blob/5f99c6be/core/sql/regress/tools/runregr_executor.ksh
----------------------------------------------------------------------
diff --git a/core/sql/regress/tools/runregr_executor.ksh b/core/sql/regress/tools/runregr_executor.ksh
index 3411009..07840b2 100755
--- a/core/sql/regress/tools/runregr_executor.ksh
+++ b/core/sql/regress/tools/runregr_executor.ksh
@@ -237,7 +237,7 @@ skippedfiles=
 
 # sbtestfiles contains the list of tests to be run in seabase mode
 if [ "$seabase" -ne 0 ]; then
-  sbtestfiles="TEST001 TEST002 TEST012 TEST013 TEST014 TEST015 TEST016 TEST020 TEST022 TEST025 TEST050 TEST063 TEST088 TEST101 TEST106 TEST107 TEST122 TEST130 TEST131 TEST140"
+  sbtestfiles="TEST001 TEST002 TEST012 TEST013 TEST014 TEST015 TEST016 TEST020 TEST022 TEST025 TEST050 TEST063 TEST088 TEST101 TEST106 TEST107 TEST122  TEST131 TEST140"
   sbprettyfiles=
   for i in $prettyfiles; do
     for j in $sbtestfiles; do