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 2018/01/19 06:58:05 UTC

[4/6] trafodion git commit: Remove extra parens

Remove extra parens


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

Branch: refs/heads/master
Commit: 7c27c146a5b0e22366a4f1e6a86d99b0ea250dbb
Parents: de7240e
Author: Sandhya Sundaresan <sa...@apache.org>
Authored: Thu Jan 18 23:02:36 2018 +0000
Committer: Sandhya Sundaresan <sa...@apache.org>
Committed: Thu Jan 18 23:02:36 2018 +0000

----------------------------------------------------------------------
 core/sql/cli/Cli.cpp | 15 ++++++---------
 1 file changed, 6 insertions(+), 9 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/trafodion/blob/7c27c146/core/sql/cli/Cli.cpp
----------------------------------------------------------------------
diff --git a/core/sql/cli/Cli.cpp b/core/sql/cli/Cli.cpp
index 4b7d6b6..72d6731 100644
--- a/core/sql/cli/Cli.cpp
+++ b/core/sql/cli/Cli.cpp
@@ -9798,16 +9798,13 @@ Lng32 SQLCLI_LOBddlInterface
         Int32 rc= ExpLOBoper::initLOBglobal(exLobGlob,currContext.exHeap(),&currContext,hdfsServer,hdfsPort);
         if (rc)
           {
-            {
-              cliRC = 0;
-		ComDiagsArea * da = &diags;
-		ExRaiseSqlError(currContext.exHeap(), &da, 
+            cliRC = 0;
+            ComDiagsArea * da = &diags;
+            ExRaiseSqlError(currContext.exHeap(), &da, 
 			    (ExeErrorCode)(8442), NULL, &cliRC    , 
-			    &rc, NULL, (char*)"ExpLOBInterfaceCreate",
-
-			    getLobErrStr(rc));
-		goto error_return;
-	      }
+                            &rc, NULL, (char*)"ExpLOBInterfaceCreate",
+                            getLobErrStr(rc));
+            goto error_return;	      
           }
 	// drop descriptor table
 	for (Lng32 i = 0; i < numLOBs; i++)