Return-Path: X-Original-To: archive-asf-public-internal@cust-asf2.ponee.io Delivered-To: archive-asf-public-internal@cust-asf2.ponee.io Received: from cust-asf.ponee.io (cust-asf.ponee.io [163.172.22.183]) by cust-asf2.ponee.io (Postfix) with ESMTP id 32A35200B41 for ; Thu, 7 Jul 2016 22:36:49 +0200 (CEST) Received: by cust-asf.ponee.io (Postfix) id 301C4160A7C; Thu, 7 Jul 2016 20:36:49 +0000 (UTC) Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by cust-asf.ponee.io (Postfix) with SMTP id 759CB160A4F for ; Thu, 7 Jul 2016 22:36:48 +0200 (CEST) Received: (qmail 8283 invoked by uid 500); 7 Jul 2016 20:36:47 -0000 Mailing-List: contact commits-help@trafodion.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: commits@trafodion.apache.org Delivered-To: mailing list commits@trafodion.apache.org Received: (qmail 8274 invoked by uid 99); 7 Jul 2016 20:36:47 -0000 Received: from pnap-us-west-generic-nat.apache.org (HELO spamd2-us-west.apache.org) (209.188.14.142) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 07 Jul 2016 20:36:47 +0000 Received: from localhost (localhost [127.0.0.1]) by spamd2-us-west.apache.org (ASF Mail Server at spamd2-us-west.apache.org) with ESMTP id E3A961A03E4 for ; Thu, 7 Jul 2016 20:36:46 +0000 (UTC) X-Virus-Scanned: Debian amavisd-new at spamd2-us-west.apache.org X-Spam-Flag: NO X-Spam-Score: -4.646 X-Spam-Level: X-Spam-Status: No, score=-4.646 tagged_above=-999 required=6.31 tests=[KAM_ASCII_DIVIDERS=0.8, KAM_LAZY_DOMAIN_SECURITY=1, RCVD_IN_DNSWL_HI=-5, RCVD_IN_MSPIKE_H3=-0.01, RCVD_IN_MSPIKE_WL=-0.01, RP_MATCHES_RCVD=-1.426] autolearn=disabled Received: from mx1-lw-us.apache.org ([10.40.0.8]) by localhost (spamd2-us-west.apache.org [10.40.0.9]) (amavisd-new, port 10024) with ESMTP id aB5hk3W1XpOb for ; Thu, 7 Jul 2016 20:36:46 +0000 (UTC) Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by mx1-lw-us.apache.org (ASF Mail Server at mx1-lw-us.apache.org) with SMTP id CE0545FCEF for ; Thu, 7 Jul 2016 20:36:45 +0000 (UTC) Received: (qmail 8260 invoked by uid 99); 7 Jul 2016 20:36:45 -0000 Received: from git1-us-west.apache.org (HELO git1-us-west.apache.org) (140.211.11.23) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 07 Jul 2016 20:36:45 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id EA9ABE05D9; Thu, 7 Jul 2016 20:36:44 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: sandhya@apache.org To: commits@trafodion.incubator.apache.org Date: Thu, 07 Jul 2016 20:36:48 -0000 Message-Id: <451a3297d9ad4ddb9e30f05ada46a03f@git.apache.org> In-Reply-To: References: X-Mailer: ASF-Git Admin Mailer Subject: [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) archived-at: Thu, 07 Jul 2016 20:36:49 -0000 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 Authored: Wed Jul 6 04:19:57 2016 +0000 Committer: Sandhya Sundaresan 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