[1/2] trafodion git commit: [TRAFODION-2600] Unable to create view ... but user has SELECT privilege

2018-04-17 Thread rmarton
Repository: trafodion
Updated Branches:
  refs/heads/master aade2cffa -> 8c6eebffa


[TRAFODION-2600] Unable to create view ... but user has SELECT privilege

Query invalidation is not resetting the role list when a user is granted a role.
For DML operations, we always retry the request once, and between retries, the
role list is reset.  So DML works on a retry.
However, DDL operations are not retried, so the role list is not reset and the
create view fails.

An analogous issue exists when the role is revoked from a user and the role
list is not reset.  In this case, the user can still create views even though
they no longer have the privilege.

Changes:
- Grant role: sends a new query invalidation key
- Revoke role: forces a query invalidation check even if the key is not present
- Displays query invalidation keys when debug option DBUSER_DEBUG is set, e.g:
   set envvar DBUSER_DEBUG 1;


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

Branch: refs/heads/master
Commit: f9820b26144a45b7c7cbdedaeefc832f150f5d45
Parents: ad1c676
Author: Roberta Marton 
Authored: Mon Apr 16 22:26:07 2018 +
Committer: Roberta Marton 
Committed: Mon Apr 16 22:26:07 2018 +

--
 core/sql/common/ComDistribution.cpp |   1 +
 core/sql/common/ComSecurityKey.cpp  | 114 ++-
 core/sql/common/ComSecurityKey.h|   5 +-
 core/sql/common/ComSmallDefs.h  |   3 +-
 core/sql/executor/ExExeUtilGet.cpp  |   4 +-
 core/sql/regress/privs1/EXPECTED120 |  33 -
 core/sql/regress/privs1/TEST120 |   5 +-
 core/sql/regress/privs2/EXPECTED144 |  26 ++-
 core/sql/regress/privs2/TEST144 |   1 +
 core/sql/runtimestats/sscpipc.cpp   |   8 +++
 core/sql/sqlcomp/PrivMgrRoles.cpp   |  34 +
 core/sql/sqlcomp/QCache.cpp |  17 +
 12 files changed, 235 insertions(+), 16 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/trafodion/blob/f9820b26/core/sql/common/ComDistribution.cpp
--
diff --git a/core/sql/common/ComDistribution.cpp 
b/core/sql/common/ComDistribution.cpp
index 1fec747..14bb378 100644
--- a/core/sql/common/ComDistribution.cpp
+++ b/core/sql/common/ComDistribution.cpp
@@ -298,6 +298,7 @@ Int32 literalToEnum (const literalAndEnumStruct * 
conversionTable,
 const literalAndEnumStruct qiTypeConversionTable [] =
 {
   {COM_QI_INVALID_ACTIONTYPE, COM_QI_INVALID_ACTIONTYPE_LIT},
+  {COM_QI_GRANT_ROLE, COM_QI_GRANT_ROLE_LIT},
   {COM_QI_USER_GRANT_ROLE, COM_QI_USER_GRANT_ROLE_LIT},
   {COM_QI_ROLE_GRANT_ROLE, COM_QI_ROLE_GRANT_ROLE_LIT},
   {COM_QI_OBJECT_SELECT, COM_QI_OBJECT_SELECT_LIT},

http://git-wip-us.apache.org/repos/asf/trafodion/blob/f9820b26/core/sql/common/ComSecurityKey.cpp
--
diff --git a/core/sql/common/ComSecurityKey.cpp 
b/core/sql/common/ComSecurityKey.cpp
index 76b88e7..567d9ee 100644
--- a/core/sql/common/ComSecurityKey.cpp
+++ b/core/sql/common/ComSecurityKey.cpp
@@ -165,11 +165,26 @@ bool buildSecurityKeys( const int32_t userID,
   if (privs.isNull())
 return true;
 
+  NABoolean doDebug = (getenv("DBUSER_DEBUG") ? TRUE : FALSE);
+  std::string  msg ("Method: buildSecurityKeys: ");
+  if (doDebug)
+  {
+printf("[DBUSER:%d] %s\n", (int) getpid(), msg.c_str());
+fflush(stdout);
+  }
+
   // If public is the grantee, generate special security key
   // A user cannot be revoked from public
   if (ComUser::isPublicUserID(granteeID))
   {
 ComSecurityKey key(granteeID, ComSecurityKey::OBJECT_IS_SPECIAL_ROLE);
+if (doDebug)
+{
+  NAString msg (key.print(granteeID, objectUID));
+  printf("[DBUSER:%d]  (public) %s\n", (int) getpid(), msg.data());
+  fflush(stdout);
+}
+
 if (key.isValid())
   secKeySet.insert(key);
 else
@@ -181,6 +196,14 @@ bool buildSecurityKeys( const int32_t userID,
   if (PrivMgr::isRoleID(granteeID))
   {
 ComSecurityKey key (userID, granteeID, ComSecurityKey::SUBJECT_IS_USER);
+if (doDebug)
+{
+  NAString msg = key.print(userID, granteeID);
+  printf("[DBUSER:%d]   (role) %s\n",
+ (int) getpid(), msg.data());
+  fflush(stdout);
+}
+
 if (key.isValid())
  secKeySet.insert(key);
 else
@@ -195,6 +218,14 @@ bool buildSecurityKeys( const int32_t userID,
 {
   ComSecurityKey key (granteeID, objectUID, PrivType(i), 
   ComSecurityKey::OBJECT_IS_OBJECT);
+  if (doDebug)
+  {
+NAString msg = key.print(granteeID, objectUID);
+printf("[DBUSER:%d]   (DML)%s\n",
+   (int) getpid(), msg.data(

[2/2] trafodion git commit: merge [TRAFODION-2600] pr - 1520 Unable to create view ... but user has SELECT privilege

2018-04-17 Thread rmarton
merge [TRAFODION-2600] pr - 1520 Unable to create view ... but user has SELECT 
privilege


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

Branch: refs/heads/master
Commit: 8c6eebffa235cc912843d10d440926cdadcd0d33
Parents: aade2cf f9820b2
Author: Roberta Marton 
Authored: Tue Apr 17 23:35:01 2018 +
Committer: Roberta Marton 
Committed: Tue Apr 17 23:35:01 2018 +

--
 core/sql/common/ComDistribution.cpp |   1 +
 core/sql/common/ComSecurityKey.cpp  | 114 ++-
 core/sql/common/ComSecurityKey.h|   5 +-
 core/sql/common/ComSmallDefs.h  |   3 +-
 core/sql/executor/ExExeUtilGet.cpp  |   4 +-
 core/sql/regress/privs1/EXPECTED120 |  33 -
 core/sql/regress/privs1/TEST120 |   5 +-
 core/sql/regress/privs2/EXPECTED144 |  26 ++-
 core/sql/regress/privs2/TEST144 |   1 +
 core/sql/runtimestats/sscpipc.cpp   |   8 +++
 core/sql/sqlcomp/PrivMgrRoles.cpp   |  34 +
 core/sql/sqlcomp/QCache.cpp |  17 +
 12 files changed, 235 insertions(+), 16 deletions(-)
--




trafodion-site git commit: Tickle web publishing

2018-04-17 Thread dbirdsall
Repository: trafodion-site
Updated Branches:
  refs/heads/asf-site 02a59eb37 -> bb3780727


Tickle web publishing


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

Branch: refs/heads/asf-site
Commit: bb37807275669d002b7bb75bbe6f549274d421f9
Parents: 02a59eb
Author: Dave Birdsall 
Authored: Tue Apr 17 23:17:11 2018 +
Committer: Dave Birdsall 
Committed: Tue Apr 17 23:17:11 2018 +

--
 index.html | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
--


http://git-wip-us.apache.org/repos/asf/trafodion-site/blob/bb378072/index.html
--
diff --git a/index.html b/index.html
index 2f91fdd..91ab0be 100644
--- a/index.html
+++ b/index.html
@@ -1,7 +1,7 @@
 
 
 
 



[17/22] trafodion-site git commit: Merge PRs 1514 [TRAFODION-3022] and 1515 [TRAFODION-2960]

2018-04-17 Thread dbirdsall
http://git-wip-us.apache.org/repos/asf/trafodion-site/blob/02a59eb3/docs/2.3.0/dcs_reference/apidocs/org/trafodion/dcs/zookeeper/ZKServerTool.html
--
diff --git 
a/docs/2.3.0/dcs_reference/apidocs/org/trafodion/dcs/zookeeper/ZKServerTool.html
 
b/docs/2.3.0/dcs_reference/apidocs/org/trafodion/dcs/zookeeper/ZKServerTool.html
index d7e5e73..f650ee1 100644
--- 
a/docs/2.3.0/dcs_reference/apidocs/org/trafodion/dcs/zookeeper/ZKServerTool.html
+++ 
b/docs/2.3.0/dcs_reference/apidocs/org/trafodion/dcs/zookeeper/ZKServerTool.html
@@ -2,10 +2,10 @@
 
 
 
-
+
 
 ZKServerTool (Trafodion Database Connectivity Services 2.3.0 
API)
-
+
 
 
 

http://git-wip-us.apache.org/repos/asf/trafodion-site/blob/02a59eb3/docs/2.3.0/dcs_reference/apidocs/org/trafodion/dcs/zookeeper/ZkClient.html
--
diff --git 
a/docs/2.3.0/dcs_reference/apidocs/org/trafodion/dcs/zookeeper/ZkClient.html 
b/docs/2.3.0/dcs_reference/apidocs/org/trafodion/dcs/zookeeper/ZkClient.html
index d69ee47..cdcf18d 100644
--- a/docs/2.3.0/dcs_reference/apidocs/org/trafodion/dcs/zookeeper/ZkClient.html
+++ b/docs/2.3.0/dcs_reference/apidocs/org/trafodion/dcs/zookeeper/ZkClient.html
@@ -2,10 +2,10 @@
 
 
 
-
+
 
 ZkClient (Trafodion Database Connectivity Services 2.3.0 API)
-
+
 
 
 

http://git-wip-us.apache.org/repos/asf/trafodion-site/blob/02a59eb3/docs/2.3.0/dcs_reference/apidocs/org/trafodion/dcs/zookeeper/ZkUtil.html
--
diff --git 
a/docs/2.3.0/dcs_reference/apidocs/org/trafodion/dcs/zookeeper/ZkUtil.html 
b/docs/2.3.0/dcs_reference/apidocs/org/trafodion/dcs/zookeeper/ZkUtil.html
index 42b2773..a6b9ce8 100644
--- a/docs/2.3.0/dcs_reference/apidocs/org/trafodion/dcs/zookeeper/ZkUtil.html
+++ b/docs/2.3.0/dcs_reference/apidocs/org/trafodion/dcs/zookeeper/ZkUtil.html
@@ -2,10 +2,10 @@
 
 
 
-
+
 
 ZkUtil (Trafodion Database Connectivity Services 2.3.0 API)
-
+
 
 
 

http://git-wip-us.apache.org/repos/asf/trafodion-site/blob/02a59eb3/docs/2.3.0/dcs_reference/apidocs/org/trafodion/dcs/zookeeper/ZooKeeperMainServerArg.html
--
diff --git 
a/docs/2.3.0/dcs_reference/apidocs/org/trafodion/dcs/zookeeper/ZooKeeperMainServerArg.html
 
b/docs/2.3.0/dcs_reference/apidocs/org/trafodion/dcs/zookeeper/ZooKeeperMainServerArg.html
index b30194c..dd2834d 100644
--- 
a/docs/2.3.0/dcs_reference/apidocs/org/trafodion/dcs/zookeeper/ZooKeeperMainServerArg.html
+++ 
b/docs/2.3.0/dcs_reference/apidocs/org/trafodion/dcs/zookeeper/ZooKeeperMainServerArg.html
@@ -2,10 +2,10 @@
 
 
 
-
+
 
 ZooKeeperMainServerArg (Trafodion Database Connectivity Services 2.3.0 
API)
-
+
 
 
 

http://git-wip-us.apache.org/repos/asf/trafodion-site/blob/02a59eb3/docs/2.3.0/dcs_reference/apidocs/org/trafodion/dcs/zookeeper/class-use/DcsQuorumPeer.html
--
diff --git 
a/docs/2.3.0/dcs_reference/apidocs/org/trafodion/dcs/zookeeper/class-use/DcsQuorumPeer.html
 
b/docs/2.3.0/dcs_reference/apidocs/org/trafodion/dcs/zookeeper/class-use/DcsQuorumPeer.html
index 10086e4..9b64bfb 100644
--- 
a/docs/2.3.0/dcs_reference/apidocs/org/trafodion/dcs/zookeeper/class-use/DcsQuorumPeer.html
+++ 
b/docs/2.3.0/dcs_reference/apidocs/org/trafodion/dcs/zookeeper/class-use/DcsQuorumPeer.html
@@ -2,10 +2,10 @@
 
 
 
-
+
 
 Uses of Class org.trafodion.dcs.zookeeper.DcsQuorumPeer (Trafodion 
Database Connectivity Services 2.3.0 API)
-
+
 
 
 

http://git-wip-us.apache.org/repos/asf/trafodion-site/blob/02a59eb3/docs/2.3.0/dcs_reference/apidocs/org/trafodion/dcs/zookeeper/class-use/ZKConfig.html
--
diff --git 
a/docs/2.3.0/dcs_reference/apidocs/org/trafodion/dcs/zookeeper/class-use/ZKConfig.html
 
b/docs/2.3.0/dcs_reference/apidocs/org/trafodion/dcs/zookeeper/class-use/ZKConfig.html
index c883887..cfcb094 100644
--- 
a/docs/2.3.0/dcs_reference/apidocs/org/trafodion/dcs/zookeeper/class-use/ZKConfig.html
+++ 
b/docs/2.3.0/dcs_reference/apidocs/org/trafodion/dcs/zookeeper/class-use/ZKConfig.html
@@ -2,10 +2,10 @@
 
 
 
-
+
 
 Uses of Class org.trafodion.dcs.zookeeper.ZKConfig (Trafodion Database 
Connectivity Services 2.3.0 API)
-
+
 
 
 

http://git-wip-us.apache.org/repos/asf/trafodion-site/blob/02a59eb3/docs/2.3.0/dcs_reference/apidocs/org/trafodion/dcs/zookeeper/class-use/ZKServerTool.html
--
diff --git 
a/docs/2.3.0/dcs_reference/apidocs/org/trafodion/dcs/zookeeper/class-use/ZKServerTool.html
 
b/docs/2.3.0/dcs_reference/apidocs/org/trafodion/dcs/zookeeper/class-use/ZKServerTool.html
index ef9d9a2..9f8cea4 100644
--- 
a/docs/2.3.0/dcs_reference/apidocs/org/trafodion/dcs/zookeeper/class-use/ZKServerTool.html
+++ 
b/docs/2.3.0/dcs_reference/apidocs/org/trafodion/dcs/zoo

[07/22] trafodion-site git commit: Merge PRs 1514 [TRAFODION-3022] and 1515 [TRAFODION-2960]

2018-04-17 Thread dbirdsall
http://git-wip-us.apache.org/repos/asf/trafodion-site/blob/02a59eb3/docs/dcs_reference/apidocs/org/trafodion/dcs/util/class-use/Base64.Base64InputStream.html
--
diff --git 
a/docs/dcs_reference/apidocs/org/trafodion/dcs/util/class-use/Base64.Base64InputStream.html
 
b/docs/dcs_reference/apidocs/org/trafodion/dcs/util/class-use/Base64.Base64InputStream.html
index 0e7c392..ad2df66 100644
--- 
a/docs/dcs_reference/apidocs/org/trafodion/dcs/util/class-use/Base64.Base64InputStream.html
+++ 
b/docs/dcs_reference/apidocs/org/trafodion/dcs/util/class-use/Base64.Base64InputStream.html
@@ -2,10 +2,10 @@
 
 
 
-
+
 
 Uses of Class org.trafodion.dcs.util.Base64.Base64InputStream 
(Trafodion Database Connectivity Services 2.3.0 API)
-
+
 
 
 

http://git-wip-us.apache.org/repos/asf/trafodion-site/blob/02a59eb3/docs/dcs_reference/apidocs/org/trafodion/dcs/util/class-use/Base64.Base64OutputStream.html
--
diff --git 
a/docs/dcs_reference/apidocs/org/trafodion/dcs/util/class-use/Base64.Base64OutputStream.html
 
b/docs/dcs_reference/apidocs/org/trafodion/dcs/util/class-use/Base64.Base64OutputStream.html
index abced1c..eaff7c7 100644
--- 
a/docs/dcs_reference/apidocs/org/trafodion/dcs/util/class-use/Base64.Base64OutputStream.html
+++ 
b/docs/dcs_reference/apidocs/org/trafodion/dcs/util/class-use/Base64.Base64OutputStream.html
@@ -2,10 +2,10 @@
 
 
 
-
+
 
 Uses of Class org.trafodion.dcs.util.Base64.Base64OutputStream 
(Trafodion Database Connectivity Services 2.3.0 API)
-
+
 
 
 

http://git-wip-us.apache.org/repos/asf/trafodion-site/blob/02a59eb3/docs/dcs_reference/apidocs/org/trafodion/dcs/util/class-use/Base64.html
--
diff --git 
a/docs/dcs_reference/apidocs/org/trafodion/dcs/util/class-use/Base64.html 
b/docs/dcs_reference/apidocs/org/trafodion/dcs/util/class-use/Base64.html
index 246c8b9..41bd8ad 100644
--- a/docs/dcs_reference/apidocs/org/trafodion/dcs/util/class-use/Base64.html
+++ b/docs/dcs_reference/apidocs/org/trafodion/dcs/util/class-use/Base64.html
@@ -2,10 +2,10 @@
 
 
 
-
+
 
 Uses of Class org.trafodion.dcs.util.Base64 (Trafodion Database 
Connectivity Services 2.3.0 API)
-
+
 
 
 

http://git-wip-us.apache.org/repos/asf/trafodion-site/blob/02a59eb3/docs/dcs_reference/apidocs/org/trafodion/dcs/util/class-use/ByteBufferUtils.html
--
diff --git 
a/docs/dcs_reference/apidocs/org/trafodion/dcs/util/class-use/ByteBufferUtils.html
 
b/docs/dcs_reference/apidocs/org/trafodion/dcs/util/class-use/ByteBufferUtils.html
index 979dcd7..3ca6abb 100644
--- 
a/docs/dcs_reference/apidocs/org/trafodion/dcs/util/class-use/ByteBufferUtils.html
+++ 
b/docs/dcs_reference/apidocs/org/trafodion/dcs/util/class-use/ByteBufferUtils.html
@@ -2,10 +2,10 @@
 
 
 
-
+
 
 Uses of Class org.trafodion.dcs.util.ByteBufferUtils (Trafodion 
Database Connectivity Services 2.3.0 API)
-
+
 
 
 

http://git-wip-us.apache.org/repos/asf/trafodion-site/blob/02a59eb3/docs/dcs_reference/apidocs/org/trafodion/dcs/util/class-use/Bytes.html
--
diff --git 
a/docs/dcs_reference/apidocs/org/trafodion/dcs/util/class-use/Bytes.html 
b/docs/dcs_reference/apidocs/org/trafodion/dcs/util/class-use/Bytes.html
index cb522fc..b4e6733 100644
--- a/docs/dcs_reference/apidocs/org/trafodion/dcs/util/class-use/Bytes.html
+++ b/docs/dcs_reference/apidocs/org/trafodion/dcs/util/class-use/Bytes.html
@@ -2,10 +2,10 @@
 
 
 
-
+
 
 Uses of Class org.trafodion.dcs.util.Bytes (Trafodion Database 
Connectivity Services 2.3.0 API)
-
+
 
 
 

http://git-wip-us.apache.org/repos/asf/trafodion-site/blob/02a59eb3/docs/dcs_reference/apidocs/org/trafodion/dcs/util/class-use/DcsConfTool.html
--
diff --git 
a/docs/dcs_reference/apidocs/org/trafodion/dcs/util/class-use/DcsConfTool.html 
b/docs/dcs_reference/apidocs/org/trafodion/dcs/util/class-use/DcsConfTool.html
index 2930866..2f37c53 100644
--- 
a/docs/dcs_reference/apidocs/org/trafodion/dcs/util/class-use/DcsConfTool.html
+++ 
b/docs/dcs_reference/apidocs/org/trafodion/dcs/util/class-use/DcsConfTool.html
@@ -2,10 +2,10 @@
 
 
 
-
+
 
 Uses of Class org.trafodion.dcs.util.DcsConfTool (Trafodion Database 
Connectivity Services 2.3.0 API)
-
+
 
 
 

http://git-wip-us.apache.org/repos/asf/trafodion-site/blob/02a59eb3/docs/dcs_reference/apidocs/org/trafodion/dcs/util/class-use/DcsConfiguration.html
--
diff --git 
a/docs/dcs_reference/apidocs/org/trafodion/dcs/util/class-use/DcsConfiguration.html
 
b/docs/dcs_reference/apidocs/org/trafodion/dcs/util/class-use/DcsConfiguration.html
index 9988c0b..3cce80a 100644
--- 
a/docs/dcs_reference/apidocs/org/trafodion/dcs/util/class-use/

[14/22] trafodion-site git commit: Merge PRs 1514 [TRAFODION-3022] and 1515 [TRAFODION-2960]

2018-04-17 Thread dbirdsall
http://git-wip-us.apache.org/repos/asf/trafodion-site/blob/02a59eb3/docs/2.3.0/jdbct4ref_guide/Trafodion_JDBCT4_Reference_Guide.pdf
--
diff --git a/docs/2.3.0/jdbct4ref_guide/Trafodion_JDBCT4_Reference_Guide.pdf 
b/docs/2.3.0/jdbct4ref_guide/Trafodion_JDBCT4_Reference_Guide.pdf
index f9a46ea..cf37a09 100644
Binary files a/docs/2.3.0/jdbct4ref_guide/Trafodion_JDBCT4_Reference_Guide.pdf 
and b/docs/2.3.0/jdbct4ref_guide/Trafodion_JDBCT4_Reference_Guide.pdf differ

http://git-wip-us.apache.org/repos/asf/trafodion-site/blob/02a59eb3/docs/2.3.0/jdbct4ref_guide/dependencies.html
--
diff --git a/docs/2.3.0/jdbct4ref_guide/dependencies.html 
b/docs/2.3.0/jdbct4ref_guide/dependencies.html
index 536729b..6910bae 100644
--- a/docs/2.3.0/jdbct4ref_guide/dependencies.html
+++ b/docs/2.3.0/jdbct4ref_guide/dependencies.html
@@ -1,5 +1,5 @@
 http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd";>
-
+
 http://www.w3.org/1999/xhtml"; xml:lang="en" lang="en">
   
 
@@ -10,7 +10,7 @@
   @import url("./css/site.css");
 
 
-
+
 
 
 
@@ -27,7 +27,7 @@
 
 
 
-Last Published: 2018-03-26
+Last Published: 2018-04-17
    | Version: 2.3.0
   
 Trafodion JDBC Type 
4 Programmer's Reference Guide

http://git-wip-us.apache.org/repos/asf/trafodion-site/blob/02a59eb3/docs/2.3.0/jdbct4ref_guide/integration.html
--
diff --git a/docs/2.3.0/jdbct4ref_guide/integration.html 
b/docs/2.3.0/jdbct4ref_guide/integration.html
index 554f773..ad0348e 100644
--- a/docs/2.3.0/jdbct4ref_guide/integration.html
+++ b/docs/2.3.0/jdbct4ref_guide/integration.html
@@ -1,5 +1,5 @@
 http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd";>
-
+
 http://www.w3.org/1999/xhtml"; xml:lang="en" lang="en">
   
 
@@ -10,7 +10,7 @@
   @import url("./css/site.css");
 
 
-
+
 
 
 
@@ -27,7 +27,7 @@
 
 
 
-Last Published: 2018-03-26
+Last Published: 2018-04-17
    | Version: 2.3.0
   
 Trafodion JDBC Type 
4 Programmer's Reference Guide

http://git-wip-us.apache.org/repos/asf/trafodion-site/blob/02a59eb3/docs/2.3.0/jdbct4ref_guide/issue-tracking.html
--
diff --git a/docs/2.3.0/jdbct4ref_guide/issue-tracking.html 
b/docs/2.3.0/jdbct4ref_guide/issue-tracking.html
index 0988369..ff7cf86 100644
--- a/docs/2.3.0/jdbct4ref_guide/issue-tracking.html
+++ b/docs/2.3.0/jdbct4ref_guide/issue-tracking.html
@@ -1,5 +1,5 @@
 http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd";>
-
+
 http://www.w3.org/1999/xhtml"; xml:lang="en" lang="en">
   
 
@@ -10,7 +10,7 @@
   @import url("./css/site.css");
 
 
-
+
 
 
 
@@ -27,7 +27,7 @@
 
 
 
-Last Published: 2018-03-26
+Last Published: 2018-04-17
    | Version: 2.3.0
   
 Trafodion JDBC Type 
4 Programmer's Reference Guide

http://git-wip-us.apache.org/repos/asf/trafodion-site/blob/02a59eb3/docs/2.3.0/jdbct4ref_guide/license.html
--
diff --git a/docs/2.3.0/jdbct4ref_guide/license.html 
b/docs/2.3.0/jdbct4ref_guide/license.html
index 0b07b5f..a22c37d 100644
--- a/docs/2.3.0/jdbct4ref_guide/license.html
+++ b/docs/2.3.0/jdbct4ref_guide/license.html
@@ -1,5 +1,5 @@
 http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd";>
-
+
 http://www.w3.org/1999/xhtml"; xml:lang="en" lang="en">
   
 
@@ -10,7 +10,7 @@
   @import url("./css/site.css");
 
 
-
+
 
 
 
@@ -27,7 +27,7 @@
 
 
 
-Last Published: 2018-03-26
+Last Published: 2018-04-17
    | Version: 2.3.0
   
 Trafodion JDBC Type 
4 Programmer's Reference Guide

http://git-wip-us.apache.org/repos/asf/trafodion-site/blob/02a59eb3/docs/2.3.0/jdbct4ref_guide/mail-lists.html
--
diff --git a/docs/2.3.0/jdbct4ref_guide/mail-lists.html 
b/docs/2.3.0/jdbct4ref_guide/mail-lists.html
index f82c9fc..606d02f 100644
--- a/docs/2.3.0/jdbct4ref_guide/mail-lists.html
+++ b/docs/2.3.0/jdbct4ref_guide/mail-lists.html
@@ -1,5 +1,5 @@
 http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd";>
-
+
 http://www.w3.org/1999/xhtml"; xml:lang="en" lang="en">
   
 
@@ -10,7 +10,7 @@
   @import url("./css/site.css");
 
 
-
+
 
 
 
@@ 

[16/22] trafodion-site git commit: Merge PRs 1514 [TRAFODION-3022] and 1515 [TRAFODION-2960]

2018-04-17 Thread dbirdsall
http://git-wip-us.apache.org/repos/asf/trafodion-site/blob/02a59eb3/docs/2.3.0/dcs_reference/xref/org/trafodion/dcs/Constants.html
--
diff --git a/docs/2.3.0/dcs_reference/xref/org/trafodion/dcs/Constants.html 
b/docs/2.3.0/dcs_reference/xref/org/trafodion/dcs/Constants.html
index fd26d3c..7b7293b 100644
--- a/docs/2.3.0/dcs_reference/xref/org/trafodion/dcs/Constants.html
+++ b/docs/2.3.0/dcs_reference/xref/org/trafodion/dcs/Constants.html
@@ -102,7 +102,7 @@
 92  public static 
final String 
DCS_SERVER_USER_PROGRAM_COMMAND = "dcs.server.user.program.command";
 93  
 94  /** Default 
value for DCS server user program command */
-95  public static 
final String 
DEFAULT_DCS_SERVER_USER_PROGRAM_COMMAND = "cd 
${dcs.user.program.home};. ./sqenv.sh;mxosrvr -ZKHOST -RZ -ZKPNODE -CNGTO 
-ZKSTO -EADSCO -TCPADD -MAXHEAPPCT -STATISTICSINTERVAL -STATISTICSLIMIT 
-STATISTICSTYPE -STATISTICSENABLE -SQLPLAN -PORTMAPTOSECS 
-PORTBINDTOSECS";
+95  public static 
final String 
DEFAULT_DCS_SERVER_USER_PROGRAM_COMMAND = "cd 
${dcs.user.program.home};. ./sqenv.sh;mxosrvr -ZKHOST -RZ -ZKPNODE -CNGTO 
-ZKSTO -EADSCO -TCPADD -MAXHEAPPCT -STATISTICSINTERVAL -STATISTICSLIMIT 
-STATISTICSTYPE -STATISTICSENABLE -SQLPLAN -PORTMAPTOSECS -PORTBINDTOSECS 
-TCPKEEPALIVESTATUS -TCPKEEPALIVEIDLETIME -TCPKEEPALIVEINTERVAL 
-TCPKEEPALIVERETRYCOUNT";
 96  
 97  /** 
Configuration key for DCS server user program connecting timeout */
 98  public static 
final String 
DCS_SERVER_USER_PROGRAM_CONNECTING_TIMEOUT = "dcs.server.user.program.connecting.timeout";
@@ -122,469 +122,492 @@
 112 /** Default 
value for DCS server user program exit after disconnect */
 113 public static 
final int 
DEFAULT_DCS_SERVER_USER_PROGRAM_EXIT_AFTER_DISCONNECT = 0;
 114 
-115 /**
-116  * Configuration key for DCS server user program 
exit when heap size becomes
-117  * too large
-118  */
-119 public static 
final String 
DCS_SERVER_USER_PROGRAM_MAX_HEAP_PCT_EXIT = "dcs.server.user.program.max.heap.pct.exit";
+115 /** 
Configuration key for DCS server program mxosrvr keepalive STATUS*/
+116 public static 
final String  
DEFAULT_DCS_SERVER_PROGRAM_TCP_KEEPALIVE_STATUS= "dcs.server.user.program.tcp.keepalive.status";
+117 
+118 /** Default 
value for DCS server program mxosrvr keepalive STATUS*/
+119 public static 
final String 
DCS_SERVER_PROGRAM_KEEPALIVE_STATUS = "true";
 120 
-121 /**
-122  * Default value for DCS server user program 
exit when heap size becomes too
-123  * large
-124  */
-125 public static 
final int 
DEFAULT_DCS_SERVER_USER_PROGRAM_MAX_HEAP_PCT_EXIT = 0;
+121 /** 
Configuration key for DCS server program mxosrvr keepalive IDLETIME*/
+122 public static 
final String 
DEFAULT_DCS_SERVER_PROGRAM_TCP_KEEPALIVE_IDLETIME = "dcs.server.user.program.tcp.keepalive.idletime";
+123 
+124 /** Default 
value for DCS server program mxosrvr keepalive IDLETIME*/
+125 public static 
final int DCS_SERVER_PROGRAM_KEEPALIVE_IDLETIME = 300;
 126 
-127 /** 
Configuration key for DCS server user program statistics interval time */
-128 public static 
final String 
DCS_SERVER_USER_PROGRAM_STATISTICS_INTERVAL_TIME = "dcs.server.user.program.statistics.interval.time";
+127 /** 
Configuration key for DCS server program mxosrvr keepalive INTERTIME */
+128 public static 
final String 
DEFAULT_DCS_SERVER_PROGRAM_TCP_KEEPALIVE_INTERVALTIME = "dcs.server.user.program.tcp.keepalive.intervaltime";
 129 
-130 /** T2 Driver 
Property key for DCS server user program statistics interval time */
-131 public static 
final String 
PROPERTY_STATISTICS_INTERVAL_TIME = "statisticsIntervalTime";
+130 /** Default 
value for DCS server program mxosrvr keepalive INTERTIME */
+131 public static 
final int DCS_SERVER_PROGRAM_KEEPALIVE_INTERVALTIME = 5;
 132 
-133 /** Default 
value for DCS server user program statistics interval time */
-134 public static 
final int 
DEFAULT_DCS_SERVER_USER_PROGRAM_STATISTICS_INTERVAL_TIME = 60;
+133 /** 
Configuration key for DCS server program mxosrvr keepalive RETRYCNT*/
+134 public static 
final String 
DEFAULT_DCS_SERVER_PROGRAM_TCP_KEEPALIVE_RETRYCOUNT = "dcs.server.user.program.tcp.keepalive.retrycount";
 135 
-136 /** 
Configuration key for DCS server user program statistics limit time */
-137 public static 
final String 
DCS_SERVER_USER_PROGRAM_STATISTICS_LIMIT_TIME = "dcs.server.user.program.statistics.limit.time";
-138 
-139 /** T2 Driver 
Property key for DCS server user program statistics limit time */
-140 public static 
final String 
PROPERTY_STATISTICS_LIMIT_TIME = "statisticsLimitTime";
-141 
-142 /** Default 
value for DCS server user program statistics limit time */
-143 public static 
final int 
DEFAULT_DCS_SERVER_USER_PROGRAM_STATISTICS_LIMIT_TIME = 60;
-144 
-145 /** 
Configuration key for DCS s

[10/22] trafodion-site git commit: Merge PRs 1514 [TRAFODION-3022] and 1515 [TRAFODION-2960]

2018-04-17 Thread dbirdsall
http://git-wip-us.apache.org/repos/asf/trafodion-site/blob/02a59eb3/docs/dcs_reference/apidocs/org/trafodion/dcs/Constants.html
--
diff --git a/docs/dcs_reference/apidocs/org/trafodion/dcs/Constants.html 
b/docs/dcs_reference/apidocs/org/trafodion/dcs/Constants.html
index 923698f..a2cc613 100644
--- a/docs/dcs_reference/apidocs/org/trafodion/dcs/Constants.html
+++ b/docs/dcs_reference/apidocs/org/trafodion/dcs/Constants.html
@@ -2,10 +2,10 @@
 
 
 
-
+
 
 Constants (Trafodion Database Connectivity Services 2.3.0 API)
-
+
 
 
 
@@ -346,6 +346,30 @@ extends http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?
 
 
 
+static int
+DCS_SERVER_PROGRAM_KEEPALIVE_IDLETIME
+Default value for DCS server program mxosrvr keepalive 
IDLETIME
+
+
+
+static int
+DCS_SERVER_PROGRAM_KEEPALIVE_INTERVALTIME
+Default value for DCS server program mxosrvr keepalive 
INTERTIME
+
+
+
+static int
+DCS_SERVER_PROGRAM_KEEPALIVE_RETRYCOUNT
+Default value for DCS server program mxosrvr keepalive 
RETRYCNT
+
+
+
+static http://docs.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String
+DCS_SERVER_PROGRAM_KEEPALIVE_STATUS
+Default value for DCS server program mxosrvr keepalive 
STATUS
+
+
+
 static http://docs.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String
 DCS_SERVER_STARTUP_MXOSRVR_USER_PROGRAM_RESTART_HANDLER_ATTEMPTS
 Configuration key for user program restart handler attempts 
for mxosrvr
@@ -588,6 +612,30 @@ extends http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?
 
 
 
+static http://docs.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String
+DEFAULT_DCS_SERVER_PROGRAM_TCP_KEEPALIVE_IDLETIME
+Configuration key for DCS server program mxosrvr keepalive 
IDLETIME
+
+
+
+static http://docs.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String
+DEFAULT_DCS_SERVER_PROGRAM_TCP_KEEPALIVE_INTERVALTIME
+Configuration key for DCS server program mxosrvr keepalive 
INTERTIME
+
+
+
+static http://docs.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String
+DEFAULT_DCS_SERVER_PROGRAM_TCP_KEEPALIVE_RETRYCOUNT
+Configuration key for DCS server program mxosrvr keepalive 
RETRYCNT
+
+
+
+static http://docs.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String
+DEFAULT_DCS_SERVER_PROGRAM_TCP_KEEPALIVE_STATUS
+Configuration key for DCS server program mxosrvr keepalive 
STATUS
+
+
+
 static int
 DEFAULT_DCS_SERVER_STARTUP_MXOSRVR_USER_PROGRAM_RESTART_HANDLER_ATTEMPTS
 Default value for user program restart handler attempts for 
mxosrvr
@@ -1414,6 +1462,94 @@ extends http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?
 See Also:Constant
 Field Values
 
 
+
+
+
+
+
+DEFAULT_DCS_SERVER_PROGRAM_TCP_KEEPALIVE_STATUS
+public static final http://docs.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String 
DEFAULT_DCS_SERVER_PROGRAM_TCP_KEEPALIVE_STATUS
+Configuration key for DCS server program mxosrvr keepalive 
STATUS
+See Also:Constant
 Field Values
+
+
+
+
+
+
+
+DCS_SERVER_PROGRAM_KEEPALIVE_STATUS
+public static final http://docs.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String 
DCS_SERVER_PROGRAM_KEEPALIVE_STATUS
+Default value for DCS server program mxosrvr keepalive 
STATUS
+See Also:Constant
 Field Values
+
+
+
+
+
+
+
+DEFAULT_DCS_SERVER_PROGRAM_TCP_KEEPALIVE_IDLETIME
+public static final http://docs.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String 
DEFAULT_DCS_SERVER_PROGRAM_TCP_KEEPALIVE_IDLETIME
+Configuration key for DCS server program mxosrvr keepalive 
IDLETIME
+See Also:Constant
 Field Values
+
+
+
+
+
+
+
+DCS_SERVER_PROGRAM_KEEPALIVE_IDLETIME
+public static final int DCS_SERVER_PROGRAM_KEEPALIVE_IDLETIME
+Default value for DCS server program mxosrvr keepalive 
IDLETIME
+See Also:Constant
 Field Values
+
+
+
+
+
+
+
+DEFAULT_DCS_SERVER_PROGRAM_TCP_KEEPALIVE_INTERVALTIME
+public static final http://docs.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String 
DEFAULT_DCS_SERVER_PROGRAM_TCP_KEEPALIVE_INTERVALTIME
+Configuration key for DCS server program mxosrvr keepalive 
INTERTIME
+See Also:Constant
 Field Values
+
+
+
+
+
+
+
+DCS_SERVER_PROGRAM_KEEPALIVE_INTERVALTIME
+public static final int 
DCS_SERVER_PROGRAM_KEEPALIVE_INTERVALTIME
+Default value for DCS server program mxosrvr keepalive 
INTERTIME
+See Also:Constant
 Field Values
+
+
+
+
+
+
+
+DEFAULT_DCS_SERVER_PROGRAM_TCP_KEEPALIVE_RETRYCOUN

[15/22] trafodion-site git commit: Merge PRs 1514 [TRAFODION-3022] and 1515 [TRAFODION-2960]

2018-04-17 Thread dbirdsall
http://git-wip-us.apache.org/repos/asf/trafodion-site/blob/02a59eb3/docs/2.3.0/dcs_reference/xref/org/trafodion/dcs/server/ServerManager.html
--
diff --git 
a/docs/2.3.0/dcs_reference/xref/org/trafodion/dcs/server/ServerManager.html 
b/docs/2.3.0/dcs_reference/xref/org/trafodion/dcs/server/ServerManager.html
index ad39675..942dc2a 100644
--- a/docs/2.3.0/dcs_reference/xref/org/trafodion/dcs/server/ServerManager.html
+++ b/docs/2.3.0/dcs_reference/xref/org/trafodion/dcs/server/ServerManager.html
@@ -93,537 +93,561 @@
 83  private int 
maxRestartAttempts;
 84  private int 
retryIntervalMillis;
 85  private String nid = null;
-86  
-87  class RegisteredWatcher
 implements Watcher {
-88  CountDownLatch 
startSignal;
-89  
-90  public RegisteredWatcher(CountDownLatch
 startSignal) {
-91  this.startSignal = startSignal;
-92  }
+86  private static String userProgKeepaliveStatus;
+87  private static int 
userProgKeepaliveIdletime;
+88  private static int 
userProgKeepaliveIntervaltime;
+89  private static int 
userProgKeepaliveRetrycount;
+90  
+91  class RegisteredWatcher
 implements Watcher {
+92  CountDownLatch 
startSignal;
 93  
-94  public void 
process(WatchedEvent event) {
-95  if (event.getType() == 
Event.EventType.NodeDeleted) {
-96  String 
znodePath = event.getPath();
-97  if (LOG.isDebugEnabled()) {
-98  
LOG.debug("Registered znode deleted [" + 
znodePath + "]");
-99  }
-100 
try {
-101 
startSignal.countDown();
-102 } 
catch (Exception e) {
-103 
e.printStackTrace();
-104 
LOG.error(e);
-105 }
-106 }
-107 }
-108 }
-109 
-110 class ServerMonitor
 {
-111 ScriptContext
 scriptContext = new ScriptContext();
-112 int childInstance;
-113 String 
registeredPath;
-114 Stat stat = 
null;
-115 boolean isRunning = false;
-116 String nid;
-117 String pid;
-118 
-119 public ServerMonitor(int childInstance, String registeredPath) {
-120 this.childInstance = childInstance;
-121 this.registeredPath = registeredPath;
-122 }
-123 
-124 public boolean monitor() {
-125 try {
-126 
if (LOG.isDebugEnabled()) {
-127 
LOG.debug("registered path [" + registeredPath 
+ "]");
-128 }
-129 stat 
= zkc.exists(registeredPath, false);
-130 
if (stat != null) { // User program 
znode found in
-131   
  // /registered...check pid
-132 
isRunning = isPidRunning();
-133 
if (LOG.isDebugEnabled()) {
-134   
  LOG.debug("[" + (Integer.parseInt(nid) + 1) + 
":" + childInstance + "]." + pid + ".isRunning 
["
-135   
  + isRunning + "]");
-136 }
-137 }
-138 } catch (Exception e) {
-139 
LOG.warn(e.getMessage(), e);
-140 
isRunning = false;
-141 
return isRunning;
-142 }
-143 
-144 return isRunning;
-145 }
-146 
-147 private boolean isPidRunning() throws Exception {
-148 String 
data = Bytes.toString(zkc.getData(registeredPath, false,
-149 
stat));
-150 Scanner 
scn = new Scanner(data);
-151 
scn.useDelimiter(":");
-152 
scn.next();// state
-153 
scn.next();// timestamp
-154 
scn.next();// dialogue Id
-155 nid = 
scn.next();// nid
-156 pid = 
scn.next();// pid
-157 
scn.close();
-158 
scriptContext.setHostName(hostName);
-159 
scriptContext.setScriptName(Constants.SYS_SHELL_SCRIPT_NAME);
-160 
scriptContext.setCommand("ps -p " + pid);
-161 
ScriptManager.getInstance().runScript(scriptContext);
-162 return scriptContext.getExitCode() != 0 ? false : 
true;
-163 }
-164 }
-165 
-166 class ServerRunner 
{
-167 ScriptContext
 scriptContext;
-168 String 
registeredPath;
-169 int childInstance;
-170 
-171 public ServerRunner(int childInstance, String registeredPath) {
-172 this.scriptContext = new ScriptContext();
-173 this.childInstance = childInstance;
-174 this.registeredPath = registeredPath;
-175 
scriptContext.setHostName(hostName);
-176 
scriptContext.setScriptName(Constants.SYS_SHELL_SCRIPT_NAME);
-177 String 
command = userProgramCommand
-178 
.replace("-ZKHOST", "-ZKHOST " + zkc.getZkQuorum() + " ")
-179

[03/22] trafodion-site git commit: Merge PRs 1514 [TRAFODION-3022] and 1515 [TRAFODION-2960]

2018-04-17 Thread dbirdsall
http://git-wip-us.apache.org/repos/asf/trafodion-site/blob/02a59eb3/docs/provisioning_guide/project-summary.html
--
diff --git a/docs/provisioning_guide/project-summary.html 
b/docs/provisioning_guide/project-summary.html
index b649bd7..da3586a 100644
--- a/docs/provisioning_guide/project-summary.html
+++ b/docs/provisioning_guide/project-summary.html
@@ -1,5 +1,5 @@
 http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd";>
-
+
 http://www.w3.org/1999/xhtml"; xml:lang="en" lang="en">
   
 
@@ -10,7 +10,7 @@
   @import url("./css/site.css");
 
 
-
+
 
 
 
@@ -27,7 +27,7 @@
 
 
 
-Last Published: 2018-03-26
+Last Published: 2018-04-17
    | Version: 2.3.0
   
 Trafodion Provisioning Guide

http://git-wip-us.apache.org/repos/asf/trafodion-site/blob/02a59eb3/docs/provisioning_guide/source-repository.html
--
diff --git a/docs/provisioning_guide/source-repository.html 
b/docs/provisioning_guide/source-repository.html
index 2e536e4..a9b05ec 100644
--- a/docs/provisioning_guide/source-repository.html
+++ b/docs/provisioning_guide/source-repository.html
@@ -1,5 +1,5 @@
 http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd";>
-
+
 http://www.w3.org/1999/xhtml"; xml:lang="en" lang="en">
   
 
@@ -10,7 +10,7 @@
   @import url("./css/site.css");
 
 
-
+
 
 
 
@@ -27,7 +27,7 @@
 
 
 
-Last Published: 2018-03-26
+Last Published: 2018-04-17
    | Version: 2.3.0
   
 Trafodion Provisioning Guide

http://git-wip-us.apache.org/repos/asf/trafodion-site/blob/02a59eb3/docs/provisioning_guide/team-list.html
--
diff --git a/docs/provisioning_guide/team-list.html 
b/docs/provisioning_guide/team-list.html
index 3bd1f42..c065849 100644
--- a/docs/provisioning_guide/team-list.html
+++ b/docs/provisioning_guide/team-list.html
@@ -1,5 +1,5 @@
 http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd";>
-
+
 http://www.w3.org/1999/xhtml"; xml:lang="en" lang="en">
   
 
@@ -10,7 +10,7 @@
   @import url("./css/site.css");
 
 
-
+
 
 
 
@@ -27,7 +27,7 @@
 
 
 
-Last Published: 2018-03-26
+Last Published: 2018-04-17
    | Version: 2.3.0
   
 Trafodion Provisioning Guide

http://git-wip-us.apache.org/repos/asf/trafodion-site/blob/02a59eb3/docs/rest_reference/apidocs/allclasses-frame.html
--
diff --git a/docs/rest_reference/apidocs/allclasses-frame.html 
b/docs/rest_reference/apidocs/allclasses-frame.html
index 068..fbcf65c 100644
--- a/docs/rest_reference/apidocs/allclasses-frame.html
+++ b/docs/rest_reference/apidocs/allclasses-frame.html
@@ -2,10 +2,10 @@
 
 
 
-
+
 
 All Classes (Trafodion REST 2.3.0 API)
-
+
 
 
 

http://git-wip-us.apache.org/repos/asf/trafodion-site/blob/02a59eb3/docs/rest_reference/apidocs/allclasses-noframe.html
--
diff --git a/docs/rest_reference/apidocs/allclasses-noframe.html 
b/docs/rest_reference/apidocs/allclasses-noframe.html
index 190ba2c..70ba1b2 100644
--- a/docs/rest_reference/apidocs/allclasses-noframe.html
+++ b/docs/rest_reference/apidocs/allclasses-noframe.html
@@ -2,10 +2,10 @@
 
 
 
-
+
 
 All Classes (Trafodion REST 2.3.0 API)
-
+
 
 
 

http://git-wip-us.apache.org/repos/asf/trafodion-site/blob/02a59eb3/docs/rest_reference/apidocs/constant-values.html
--
diff --git a/docs/rest_reference/apidocs/constant-values.html 
b/docs/rest_reference/apidocs/constant-values.html
index 71e8938..4c975d3 100644
--- a/docs/rest_reference/apidocs/constant-values.html
+++ b/docs/rest_reference/apidocs/constant-values.html
@@ -2,10 +2,10 @@
 
 
 
-
+
 
 Constant Field Values (Trafodion REST 2.3.0 API)
-
+
 
 
 

http://git-wip-us.apache.org/repos/asf/trafodion-site/blob/02a59eb3/docs/rest_reference/apidocs/deprecated-list.html
--
diff --git a/docs/rest_reference/apidocs/deprecated-list.html 
b/docs/rest_reference/apidocs/deprecated-list.html
index 91f4511..e096ef9 100644
--- a/docs/rest_reference/apidocs/deprecated-list.html
+++ b/docs/rest_reference/apidocs/deprecated-list.html
@@ -2,10 +2,10 @@
 
 
 
-
+
 
 Deprecated List (Trafodion REST 2.3.0 API)
-
+
 
 
 

http://git-wip-us.apache.org/repos/asf/trafodion-site/blob/02a59eb3/docs/rest_reference/apidocs/help

[18/22] trafodion-site git commit: Merge PRs 1514 [TRAFODION-3022] and 1515 [TRAFODION-2960]

2018-04-17 Thread dbirdsall
http://git-wip-us.apache.org/repos/asf/trafodion-site/blob/02a59eb3/docs/2.3.0/dcs_reference/apidocs/org/trafodion/dcs/servermt/serverHandler/class-use/ServerApiSqlConnect.html
--
diff --git 
a/docs/2.3.0/dcs_reference/apidocs/org/trafodion/dcs/servermt/serverHandler/class-use/ServerApiSqlConnect.html
 
b/docs/2.3.0/dcs_reference/apidocs/org/trafodion/dcs/servermt/serverHandler/class-use/ServerApiSqlConnect.html
index 64cdaaf..4826a6e 100644
--- 
a/docs/2.3.0/dcs_reference/apidocs/org/trafodion/dcs/servermt/serverHandler/class-use/ServerApiSqlConnect.html
+++ 
b/docs/2.3.0/dcs_reference/apidocs/org/trafodion/dcs/servermt/serverHandler/class-use/ServerApiSqlConnect.html
@@ -2,10 +2,10 @@
 
 
 
-
+
 
 Uses of Class 
org.trafodion.dcs.servermt.serverHandler.ServerApiSqlConnect (Trafodion 
Database Connectivity Services 2.3.0 API)
-
+
 
 
 

http://git-wip-us.apache.org/repos/asf/trafodion-site/blob/02a59eb3/docs/2.3.0/dcs_reference/apidocs/org/trafodion/dcs/servermt/serverHandler/class-use/ServerApiSqlDisconnect.html
--
diff --git 
a/docs/2.3.0/dcs_reference/apidocs/org/trafodion/dcs/servermt/serverHandler/class-use/ServerApiSqlDisconnect.html
 
b/docs/2.3.0/dcs_reference/apidocs/org/trafodion/dcs/servermt/serverHandler/class-use/ServerApiSqlDisconnect.html
index 9c47b0a..c2d6ae0 100644
--- 
a/docs/2.3.0/dcs_reference/apidocs/org/trafodion/dcs/servermt/serverHandler/class-use/ServerApiSqlDisconnect.html
+++ 
b/docs/2.3.0/dcs_reference/apidocs/org/trafodion/dcs/servermt/serverHandler/class-use/ServerApiSqlDisconnect.html
@@ -2,10 +2,10 @@
 
 
 
-
+
 
 Uses of Class 
org.trafodion.dcs.servermt.serverHandler.ServerApiSqlDisconnect (Trafodion 
Database Connectivity Services 2.3.0 API)
-
+
 
 
 

http://git-wip-us.apache.org/repos/asf/trafodion-site/blob/02a59eb3/docs/2.3.0/dcs_reference/apidocs/org/trafodion/dcs/servermt/serverHandler/class-use/ServerApiSqlEndTransact.html
--
diff --git 
a/docs/2.3.0/dcs_reference/apidocs/org/trafodion/dcs/servermt/serverHandler/class-use/ServerApiSqlEndTransact.html
 
b/docs/2.3.0/dcs_reference/apidocs/org/trafodion/dcs/servermt/serverHandler/class-use/ServerApiSqlEndTransact.html
index a7263ec..71f2e8b 100644
--- 
a/docs/2.3.0/dcs_reference/apidocs/org/trafodion/dcs/servermt/serverHandler/class-use/ServerApiSqlEndTransact.html
+++ 
b/docs/2.3.0/dcs_reference/apidocs/org/trafodion/dcs/servermt/serverHandler/class-use/ServerApiSqlEndTransact.html
@@ -2,10 +2,10 @@
 
 
 
-
+
 
 Uses of Class 
org.trafodion.dcs.servermt.serverHandler.ServerApiSqlEndTransact (Trafodion 
Database Connectivity Services 2.3.0 API)
-
+
 
 
 

http://git-wip-us.apache.org/repos/asf/trafodion-site/blob/02a59eb3/docs/2.3.0/dcs_reference/apidocs/org/trafodion/dcs/servermt/serverHandler/class-use/ServerApiSqlExecDirect.html
--
diff --git 
a/docs/2.3.0/dcs_reference/apidocs/org/trafodion/dcs/servermt/serverHandler/class-use/ServerApiSqlExecDirect.html
 
b/docs/2.3.0/dcs_reference/apidocs/org/trafodion/dcs/servermt/serverHandler/class-use/ServerApiSqlExecDirect.html
index e50cdf9..59e2fc8 100644
--- 
a/docs/2.3.0/dcs_reference/apidocs/org/trafodion/dcs/servermt/serverHandler/class-use/ServerApiSqlExecDirect.html
+++ 
b/docs/2.3.0/dcs_reference/apidocs/org/trafodion/dcs/servermt/serverHandler/class-use/ServerApiSqlExecDirect.html
@@ -2,10 +2,10 @@
 
 
 
-
+
 
 Uses of Class 
org.trafodion.dcs.servermt.serverHandler.ServerApiSqlExecDirect (Trafodion 
Database Connectivity Services 2.3.0 API)
-
+
 
 
 

http://git-wip-us.apache.org/repos/asf/trafodion-site/blob/02a59eb3/docs/2.3.0/dcs_reference/apidocs/org/trafodion/dcs/servermt/serverHandler/class-use/ServerApiSqlExecute.html
--
diff --git 
a/docs/2.3.0/dcs_reference/apidocs/org/trafodion/dcs/servermt/serverHandler/class-use/ServerApiSqlExecute.html
 
b/docs/2.3.0/dcs_reference/apidocs/org/trafodion/dcs/servermt/serverHandler/class-use/ServerApiSqlExecute.html
index 815dfde..93ba8f4 100644
--- 
a/docs/2.3.0/dcs_reference/apidocs/org/trafodion/dcs/servermt/serverHandler/class-use/ServerApiSqlExecute.html
+++ 
b/docs/2.3.0/dcs_reference/apidocs/org/trafodion/dcs/servermt/serverHandler/class-use/ServerApiSqlExecute.html
@@ -2,10 +2,10 @@
 
 
 
-
+
 
 Uses of Class 
org.trafodion.dcs.servermt.serverHandler.ServerApiSqlExecute (Trafodion 
Database Connectivity Services 2.3.0 API)
-
+
 
 
 

http://git-wip-us.apache.org/repos/asf/trafodion-site/blob/02a59eb3/docs/2.3.0/dcs_reference/apidocs/org/trafodion/dcs/servermt/serverHandler/class-use/ServerApiSqlFetch.html
--
diff --git 
a/docs/2.3.0/dcs_reference/apidocs/org/trafodion/dcs/servermt/serverHandler/class-use/Serve

[13/22] trafodion-site git commit: Merge PRs 1514 [TRAFODION-3022] and 1515 [TRAFODION-2960]

2018-04-17 Thread dbirdsall
http://git-wip-us.apache.org/repos/asf/trafodion-site/blob/02a59eb3/docs/2.3.0/provisioning_guide/project-info.html
--
diff --git a/docs/2.3.0/provisioning_guide/project-info.html 
b/docs/2.3.0/provisioning_guide/project-info.html
index 82d49d9..12802b5 100644
--- a/docs/2.3.0/provisioning_guide/project-info.html
+++ b/docs/2.3.0/provisioning_guide/project-info.html
@@ -1,5 +1,5 @@
 http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd";>
-
+
 http://www.w3.org/1999/xhtml"; xml:lang="en" lang="en">
   
 
@@ -10,7 +10,7 @@
   @import url("./css/site.css");
 
 
-
+
 
 
 
@@ -27,7 +27,7 @@
 
 
 
-Last Published: 2018-03-26
+Last Published: 2018-04-17
    | Version: 2.3.0
   
 Trafodion Provisioning Guide

http://git-wip-us.apache.org/repos/asf/trafodion-site/blob/02a59eb3/docs/2.3.0/provisioning_guide/project-summary.html
--
diff --git a/docs/2.3.0/provisioning_guide/project-summary.html 
b/docs/2.3.0/provisioning_guide/project-summary.html
index b649bd7..da3586a 100644
--- a/docs/2.3.0/provisioning_guide/project-summary.html
+++ b/docs/2.3.0/provisioning_guide/project-summary.html
@@ -1,5 +1,5 @@
 http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd";>
-
+
 http://www.w3.org/1999/xhtml"; xml:lang="en" lang="en">
   
 
@@ -10,7 +10,7 @@
   @import url("./css/site.css");
 
 
-
+
 
 
 
@@ -27,7 +27,7 @@
 
 
 
-Last Published: 2018-03-26
+Last Published: 2018-04-17
    | Version: 2.3.0
   
 Trafodion Provisioning Guide

http://git-wip-us.apache.org/repos/asf/trafodion-site/blob/02a59eb3/docs/2.3.0/provisioning_guide/source-repository.html
--
diff --git a/docs/2.3.0/provisioning_guide/source-repository.html 
b/docs/2.3.0/provisioning_guide/source-repository.html
index 2e536e4..a9b05ec 100644
--- a/docs/2.3.0/provisioning_guide/source-repository.html
+++ b/docs/2.3.0/provisioning_guide/source-repository.html
@@ -1,5 +1,5 @@
 http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd";>
-
+
 http://www.w3.org/1999/xhtml"; xml:lang="en" lang="en">
   
 
@@ -10,7 +10,7 @@
   @import url("./css/site.css");
 
 
-
+
 
 
 
@@ -27,7 +27,7 @@
 
 
 
-Last Published: 2018-03-26
+Last Published: 2018-04-17
    | Version: 2.3.0
   
 Trafodion Provisioning Guide

http://git-wip-us.apache.org/repos/asf/trafodion-site/blob/02a59eb3/docs/2.3.0/provisioning_guide/team-list.html
--
diff --git a/docs/2.3.0/provisioning_guide/team-list.html 
b/docs/2.3.0/provisioning_guide/team-list.html
index 3bd1f42..c065849 100644
--- a/docs/2.3.0/provisioning_guide/team-list.html
+++ b/docs/2.3.0/provisioning_guide/team-list.html
@@ -1,5 +1,5 @@
 http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd";>
-
+
 http://www.w3.org/1999/xhtml"; xml:lang="en" lang="en">
   
 
@@ -10,7 +10,7 @@
   @import url("./css/site.css");
 
 
-
+
 
 
 
@@ -27,7 +27,7 @@
 
 
 
-Last Published: 2018-03-26
+Last Published: 2018-04-17
    | Version: 2.3.0
   
 Trafodion Provisioning Guide

http://git-wip-us.apache.org/repos/asf/trafodion-site/blob/02a59eb3/docs/2.3.0/rest_reference/apidocs/allclasses-frame.html
--
diff --git a/docs/2.3.0/rest_reference/apidocs/allclasses-frame.html 
b/docs/2.3.0/rest_reference/apidocs/allclasses-frame.html
index 068..fbcf65c 100644
--- a/docs/2.3.0/rest_reference/apidocs/allclasses-frame.html
+++ b/docs/2.3.0/rest_reference/apidocs/allclasses-frame.html
@@ -2,10 +2,10 @@
 
 
 
-
+
 
 All Classes (Trafodion REST 2.3.0 API)
-
+
 
 
 

http://git-wip-us.apache.org/repos/asf/trafodion-site/blob/02a59eb3/docs/2.3.0/rest_reference/apidocs/allclasses-noframe.html
--
diff --git a/docs/2.3.0/rest_reference/apidocs/allclasses-noframe.html 
b/docs/2.3.0/rest_reference/apidocs/allclasses-noframe.html
index 190ba2c..70ba1b2 100644
--- a/docs/2.3.0/rest_reference/apidocs/allclasses-noframe.html
+++ b/docs/2.3.0/rest_reference/apidocs/allclasses-noframe.html
@@ -2,10 +2,10 @@
 
 
 
-
+
 
 All Classes (Trafodion REST 2.3.0 API)
-
+
 
 
 

http://git-wip-us.apache.org/repos/asf/trafodion-site/blob/02a59

[01/22] trafodion-site git commit: Merge PRs 1514 [TRAFODION-3022] and 1515 [TRAFODION-2960]

2018-04-17 Thread dbirdsall
Repository: trafodion-site
Updated Branches:
  refs/heads/asf-site 3c03ccb08 -> 02a59eb37


http://git-wip-us.apache.org/repos/asf/trafodion-site/blob/02a59eb3/docs/spj_guide/team-list.html
--
diff --git a/docs/spj_guide/team-list.html b/docs/spj_guide/team-list.html
index f03fa61..f01e209 100644
--- a/docs/spj_guide/team-list.html
+++ b/docs/spj_guide/team-list.html
@@ -1,5 +1,5 @@
 http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd";>
-
+
 http://www.w3.org/1999/xhtml"; xml:lang="en" lang="en">
   
 
@@ -10,7 +10,7 @@
   @import url("./css/site.css");
 
 
-
+
 
 
 
@@ -27,7 +27,7 @@
 
 
 
-Last Published: 2018-03-26
+Last Published: 2018-04-17
    | Version: 2.3.0
   
 Trafodion SPJ Guide

http://git-wip-us.apache.org/repos/asf/trafodion-site/blob/02a59eb3/docs/sql_reference/Trafodion_SQL_Reference_Manual.pdf
--
diff --git a/docs/sql_reference/Trafodion_SQL_Reference_Manual.pdf 
b/docs/sql_reference/Trafodion_SQL_Reference_Manual.pdf
index 9de2a77..60e3b60 100644
--- a/docs/sql_reference/Trafodion_SQL_Reference_Manual.pdf
+++ b/docs/sql_reference/Trafodion_SQL_Reference_Manual.pdf
@@ -4,8 +4,8 @@
 << /Title (SQL Reference Manual)
 /Creator (Asciidoctor PDF 1.5.0.alpha.11, based on Prawn 1.3.0)
 /Producer (Asciidoctor PDF 1.5.0.alpha.11, based on Prawn 1.3.0)
-/CreationDate (D:20180326153225+00'00')
-/ModDate (D:20180326153225+00'00')
+/CreationDate (D:20180417230528+00'00')
+/ModDate (D:20180417230528+00'00')
 >>
 endobj
 2 0 obj

http://git-wip-us.apache.org/repos/asf/trafodion-site/blob/02a59eb3/docs/sql_reference/dependencies.html
--
diff --git a/docs/sql_reference/dependencies.html 
b/docs/sql_reference/dependencies.html
index 285f9f2..bc644c9 100644
--- a/docs/sql_reference/dependencies.html
+++ b/docs/sql_reference/dependencies.html
@@ -1,5 +1,5 @@
 http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd";>
-
+
 http://www.w3.org/1999/xhtml"; xml:lang="en" lang="en">
   
 
@@ -10,7 +10,7 @@
   @import url("./css/site.css");
 
 
-
+
 
 
 
@@ -27,7 +27,7 @@
 
 
 
-Last Published: 2018-03-26
+Last Published: 2018-04-17
    | Version: 2.3.0
   
 Trafodion SQL Reference Manual

http://git-wip-us.apache.org/repos/asf/trafodion-site/blob/02a59eb3/docs/sql_reference/integration.html
--
diff --git a/docs/sql_reference/integration.html 
b/docs/sql_reference/integration.html
index 535eaa5..156ccbb 100644
--- a/docs/sql_reference/integration.html
+++ b/docs/sql_reference/integration.html
@@ -1,5 +1,5 @@
 http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd";>
-
+
 http://www.w3.org/1999/xhtml"; xml:lang="en" lang="en">
   
 
@@ -10,7 +10,7 @@
   @import url("./css/site.css");
 
 
-
+
 
 
 
@@ -27,7 +27,7 @@
 
 
 
-Last Published: 2018-03-26
+Last Published: 2018-04-17
    | Version: 2.3.0
   
 Trafodion SQL Reference Manual

http://git-wip-us.apache.org/repos/asf/trafodion-site/blob/02a59eb3/docs/sql_reference/issue-tracking.html
--
diff --git a/docs/sql_reference/issue-tracking.html 
b/docs/sql_reference/issue-tracking.html
index ecc6044..d70238f 100644
--- a/docs/sql_reference/issue-tracking.html
+++ b/docs/sql_reference/issue-tracking.html
@@ -1,5 +1,5 @@
 http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd";>
-
+
 http://www.w3.org/1999/xhtml"; xml:lang="en" lang="en">
   
 
@@ -10,7 +10,7 @@
   @import url("./css/site.css");
 
 
-
+
 
 
 
@@ -27,7 +27,7 @@
 
 
 
-Last Published: 2018-03-26
+Last Published: 2018-04-17
    | Version: 2.3.0
   
 Trafodion SQL Reference Manual

http://git-wip-us.apache.org/repos/asf/trafodion-site/blob/02a59eb3/docs/sql_reference/license.html
--
diff --git a/docs/sql_reference/license.html b/docs/sql_reference/license.html
index 57de15d..d942a47 100644
--- a/docs/sql_reference/license.html
+++ b/docs/sql_reference/license.html
@@ -1,5 +1,5 @@
 http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd";>
-
+
 http://www.w3.org/1999/xhtml"; xml:lang="en" lang="en">
   
 
@@ -10,7 +10,7 @@
   @import url("./css/site.c

[11/22] trafodion-site git commit: Merge PRs 1514 [TRAFODION-3022] and 1515 [TRAFODION-2960]

2018-04-17 Thread dbirdsall
http://git-wip-us.apache.org/repos/asf/trafodion-site/blob/02a59eb3/docs/2.3.0/spj_guide/mail-lists.html
--
diff --git a/docs/2.3.0/spj_guide/mail-lists.html 
b/docs/2.3.0/spj_guide/mail-lists.html
index 04ba8ad..dd5dbdf 100644
--- a/docs/2.3.0/spj_guide/mail-lists.html
+++ b/docs/2.3.0/spj_guide/mail-lists.html
@@ -1,5 +1,5 @@
 http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd";>
-
+
 http://www.w3.org/1999/xhtml"; xml:lang="en" lang="en">
   
 
@@ -10,7 +10,7 @@
   @import url("./css/site.css");
 
 
-
+
 
 
 
@@ -27,7 +27,7 @@
 
 
 
-Last Published: 2018-03-26
+Last Published: 2018-04-17
    | Version: 2.3.0
   
 Trafodion SPJ Guide

http://git-wip-us.apache.org/repos/asf/trafodion-site/blob/02a59eb3/docs/2.3.0/spj_guide/project-info.html
--
diff --git a/docs/2.3.0/spj_guide/project-info.html 
b/docs/2.3.0/spj_guide/project-info.html
index 3692637..cf5068f 100644
--- a/docs/2.3.0/spj_guide/project-info.html
+++ b/docs/2.3.0/spj_guide/project-info.html
@@ -1,5 +1,5 @@
 http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd";>
-
+
 http://www.w3.org/1999/xhtml"; xml:lang="en" lang="en">
   
 
@@ -10,7 +10,7 @@
   @import url("./css/site.css");
 
 
-
+
 
 
 
@@ -27,7 +27,7 @@
 
 
 
-Last Published: 2018-03-26
+Last Published: 2018-04-17
    | Version: 2.3.0
   
 Trafodion SPJ Guide

http://git-wip-us.apache.org/repos/asf/trafodion-site/blob/02a59eb3/docs/2.3.0/spj_guide/project-summary.html
--
diff --git a/docs/2.3.0/spj_guide/project-summary.html 
b/docs/2.3.0/spj_guide/project-summary.html
index 58a56f0..c17f02b 100644
--- a/docs/2.3.0/spj_guide/project-summary.html
+++ b/docs/2.3.0/spj_guide/project-summary.html
@@ -1,5 +1,5 @@
 http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd";>
-
+
 http://www.w3.org/1999/xhtml"; xml:lang="en" lang="en">
   
 
@@ -10,7 +10,7 @@
   @import url("./css/site.css");
 
 
-
+
 
 
 
@@ -27,7 +27,7 @@
 
 
 
-Last Published: 2018-03-26
+Last Published: 2018-04-17
    | Version: 2.3.0
   
 Trafodion SPJ Guide

http://git-wip-us.apache.org/repos/asf/trafodion-site/blob/02a59eb3/docs/2.3.0/spj_guide/source-repository.html
--
diff --git a/docs/2.3.0/spj_guide/source-repository.html 
b/docs/2.3.0/spj_guide/source-repository.html
index 6f96acb..bd22a68 100644
--- a/docs/2.3.0/spj_guide/source-repository.html
+++ b/docs/2.3.0/spj_guide/source-repository.html
@@ -1,5 +1,5 @@
 http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd";>
-
+
 http://www.w3.org/1999/xhtml"; xml:lang="en" lang="en">
   
 
@@ -10,7 +10,7 @@
   @import url("./css/site.css");
 
 
-
+
 
 
 
@@ -27,7 +27,7 @@
 
 
 
-Last Published: 2018-03-26
+Last Published: 2018-04-17
    | Version: 2.3.0
   
 Trafodion SPJ Guide

http://git-wip-us.apache.org/repos/asf/trafodion-site/blob/02a59eb3/docs/2.3.0/spj_guide/team-list.html
--
diff --git a/docs/2.3.0/spj_guide/team-list.html 
b/docs/2.3.0/spj_guide/team-list.html
index f03fa61..f01e209 100644
--- a/docs/2.3.0/spj_guide/team-list.html
+++ b/docs/2.3.0/spj_guide/team-list.html
@@ -1,5 +1,5 @@
 http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd";>
-
+
 http://www.w3.org/1999/xhtml"; xml:lang="en" lang="en">
   
 
@@ -10,7 +10,7 @@
   @import url("./css/site.css");
 
 
-
+
 
 
 
@@ -27,7 +27,7 @@
 
 
 
-Last Published: 2018-03-26
+Last Published: 2018-04-17
    | Version: 2.3.0
   
 Trafodion SPJ Guide

http://git-wip-us.apache.org/repos/asf/trafodion-site/blob/02a59eb3/docs/2.3.0/sql_reference/Trafodion_SQL_Reference_Manual.pdf
--
diff --git a/docs/2.3.0/sql_reference/Trafodion_SQL_Reference_Manual.pdf 
b/docs/2.3.0/sql_reference/Trafodion_SQL_Reference_Manual.pdf
index 9de2a77..60e3b60 100644
--- a/docs/2.3.0/sql_reference/Trafodion_SQL_Reference_Manual.pdf
+++ b/docs/2.3.0/sql_reference/Trafodion_SQL_Reference_Manual.pdf
@@ -4,8 +4,8 @@
 << /Title 

[19/22] trafodion-site git commit: Merge PRs 1514 [TRAFODION-3022] and 1515 [TRAFODION-2960]

2018-04-17 Thread dbirdsall
http://git-wip-us.apache.org/repos/asf/trafodion-site/blob/02a59eb3/docs/2.3.0/dcs_reference/apidocs/org/trafodion/dcs/servermt/ServerConstants.html
--
diff --git 
a/docs/2.3.0/dcs_reference/apidocs/org/trafodion/dcs/servermt/ServerConstants.html
 
b/docs/2.3.0/dcs_reference/apidocs/org/trafodion/dcs/servermt/ServerConstants.html
index 7cf239c..8113bc6 100644
--- 
a/docs/2.3.0/dcs_reference/apidocs/org/trafodion/dcs/servermt/ServerConstants.html
+++ 
b/docs/2.3.0/dcs_reference/apidocs/org/trafodion/dcs/servermt/ServerConstants.html
@@ -2,10 +2,10 @@
 
 
 
-
+
 
 ServerConstants (Trafodion Database Connectivity Services 2.3.0 
API)
-
+
 
 
 

http://git-wip-us.apache.org/repos/asf/trafodion-site/blob/02a59eb3/docs/2.3.0/dcs_reference/apidocs/org/trafodion/dcs/servermt/ServerManager.html
--
diff --git 
a/docs/2.3.0/dcs_reference/apidocs/org/trafodion/dcs/servermt/ServerManager.html
 
b/docs/2.3.0/dcs_reference/apidocs/org/trafodion/dcs/servermt/ServerManager.html
index 0ed79a0..06f640b 100644
--- 
a/docs/2.3.0/dcs_reference/apidocs/org/trafodion/dcs/servermt/ServerManager.html
+++ 
b/docs/2.3.0/dcs_reference/apidocs/org/trafodion/dcs/servermt/ServerManager.html
@@ -2,10 +2,10 @@
 
 
 
-
+
 
 ServerManager (Trafodion Database Connectivity Services 2.3.0 
API)
-
+
 
 
 

http://git-wip-us.apache.org/repos/asf/trafodion-site/blob/02a59eb3/docs/2.3.0/dcs_reference/apidocs/org/trafodion/dcs/servermt/ServerStatusServlet.html
--
diff --git 
a/docs/2.3.0/dcs_reference/apidocs/org/trafodion/dcs/servermt/ServerStatusServlet.html
 
b/docs/2.3.0/dcs_reference/apidocs/org/trafodion/dcs/servermt/ServerStatusServlet.html
index 9035950..1df7d75 100644
--- 
a/docs/2.3.0/dcs_reference/apidocs/org/trafodion/dcs/servermt/ServerStatusServlet.html
+++ 
b/docs/2.3.0/dcs_reference/apidocs/org/trafodion/dcs/servermt/ServerStatusServlet.html
@@ -2,10 +2,10 @@
 
 
 
-
+
 
 ServerStatusServlet (Trafodion Database Connectivity Services 2.3.0 
API)
-
+
 
 
 

http://git-wip-us.apache.org/repos/asf/trafodion-site/blob/02a59eb3/docs/2.3.0/dcs_reference/apidocs/org/trafodion/dcs/servermt/ServerUtils.html
--
diff --git 
a/docs/2.3.0/dcs_reference/apidocs/org/trafodion/dcs/servermt/ServerUtils.html 
b/docs/2.3.0/dcs_reference/apidocs/org/trafodion/dcs/servermt/ServerUtils.html
index 61a4f79..17d1ad3 100644
--- 
a/docs/2.3.0/dcs_reference/apidocs/org/trafodion/dcs/servermt/ServerUtils.html
+++ 
b/docs/2.3.0/dcs_reference/apidocs/org/trafodion/dcs/servermt/ServerUtils.html
@@ -2,10 +2,10 @@
 
 
 
-
+
 
 ServerUtils (Trafodion Database Connectivity Services 2.3.0 API)
-
+
 
 
 

http://git-wip-us.apache.org/repos/asf/trafodion-site/blob/02a59eb3/docs/2.3.0/dcs_reference/apidocs/org/trafodion/dcs/servermt/class-use/DcsServer.html
--
diff --git 
a/docs/2.3.0/dcs_reference/apidocs/org/trafodion/dcs/servermt/class-use/DcsServer.html
 
b/docs/2.3.0/dcs_reference/apidocs/org/trafodion/dcs/servermt/class-use/DcsServer.html
index 30d6cd9..6273fc1 100644
--- 
a/docs/2.3.0/dcs_reference/apidocs/org/trafodion/dcs/servermt/class-use/DcsServer.html
+++ 
b/docs/2.3.0/dcs_reference/apidocs/org/trafodion/dcs/servermt/class-use/DcsServer.html
@@ -2,10 +2,10 @@
 
 
 
-
+
 
 Uses of Class org.trafodion.dcs.servermt.DcsServer (Trafodion Database 
Connectivity Services 2.3.0 API)
-
+
 
 
 

http://git-wip-us.apache.org/repos/asf/trafodion-site/blob/02a59eb3/docs/2.3.0/dcs_reference/apidocs/org/trafodion/dcs/servermt/class-use/Metrics.html
--
diff --git 
a/docs/2.3.0/dcs_reference/apidocs/org/trafodion/dcs/servermt/class-use/Metrics.html
 
b/docs/2.3.0/dcs_reference/apidocs/org/trafodion/dcs/servermt/class-use/Metrics.html
index 1c3e56a..c2426ea 100644
--- 
a/docs/2.3.0/dcs_reference/apidocs/org/trafodion/dcs/servermt/class-use/Metrics.html
+++ 
b/docs/2.3.0/dcs_reference/apidocs/org/trafodion/dcs/servermt/class-use/Metrics.html
@@ -2,10 +2,10 @@
 
 
 
-
+
 
 Uses of Class org.trafodion.dcs.servermt.Metrics (Trafodion Database 
Connectivity Services 2.3.0 API)
-
+
 
 
 

http://git-wip-us.apache.org/repos/asf/trafodion-site/blob/02a59eb3/docs/2.3.0/dcs_reference/apidocs/org/trafodion/dcs/servermt/class-use/ServerConstants.html
--
diff --git 
a/docs/2.3.0/dcs_reference/apidocs/org/trafodion/dcs/servermt/class-use/ServerConstants.html
 
b/docs/2.3.0/dcs_reference/apidocs/org/trafodion/dcs/servermt/class-use/ServerConstants.html
index cb84365..88b7ee6 100644
--- 
a/docs/2.3.0/dcs_reference/apidocs/org/trafodion/dcs/servermt/class-use/ServerConstants.html
+++ 
b/docs/2.3.0/dcs_reference/apidocs/org/trafo

[09/22] trafodion-site git commit: Merge PRs 1514 [TRAFODION-3022] and 1515 [TRAFODION-2960]

2018-04-17 Thread dbirdsall
http://git-wip-us.apache.org/repos/asf/trafodion-site/blob/02a59eb3/docs/dcs_reference/apidocs/org/trafodion/dcs/master/listener/class-use/Util.html
--
diff --git 
a/docs/dcs_reference/apidocs/org/trafodion/dcs/master/listener/class-use/Util.html
 
b/docs/dcs_reference/apidocs/org/trafodion/dcs/master/listener/class-use/Util.html
index 141dfc7..20604e1 100644
--- 
a/docs/dcs_reference/apidocs/org/trafodion/dcs/master/listener/class-use/Util.html
+++ 
b/docs/dcs_reference/apidocs/org/trafodion/dcs/master/listener/class-use/Util.html
@@ -2,10 +2,10 @@
 
 
 
-
+
 
 Uses of Class org.trafodion.dcs.master.listener.Util (Trafodion 
Database Connectivity Services 2.3.0 API)
-
+
 
 
 

http://git-wip-us.apache.org/repos/asf/trafodion-site/blob/02a59eb3/docs/dcs_reference/apidocs/org/trafodion/dcs/master/listener/package-frame.html
--
diff --git 
a/docs/dcs_reference/apidocs/org/trafodion/dcs/master/listener/package-frame.html
 
b/docs/dcs_reference/apidocs/org/trafodion/dcs/master/listener/package-frame.html
index 9a11b2d..e5efb5f 100644
--- 
a/docs/dcs_reference/apidocs/org/trafodion/dcs/master/listener/package-frame.html
+++ 
b/docs/dcs_reference/apidocs/org/trafodion/dcs/master/listener/package-frame.html
@@ -2,10 +2,10 @@
 
 
 
-
+
 
 org.trafodion.dcs.master.listener (Trafodion Database Connectivity 
Services 2.3.0 API)
-
+
 
 
 

http://git-wip-us.apache.org/repos/asf/trafodion-site/blob/02a59eb3/docs/dcs_reference/apidocs/org/trafodion/dcs/master/listener/package-summary.html
--
diff --git 
a/docs/dcs_reference/apidocs/org/trafodion/dcs/master/listener/package-summary.html
 
b/docs/dcs_reference/apidocs/org/trafodion/dcs/master/listener/package-summary.html
index 3b1ff9d..e6f95d7 100644
--- 
a/docs/dcs_reference/apidocs/org/trafodion/dcs/master/listener/package-summary.html
+++ 
b/docs/dcs_reference/apidocs/org/trafodion/dcs/master/listener/package-summary.html
@@ -2,10 +2,10 @@
 
 
 
-
+
 
 org.trafodion.dcs.master.listener (Trafodion Database Connectivity 
Services 2.3.0 API)
-
+
 
 
 

http://git-wip-us.apache.org/repos/asf/trafodion-site/blob/02a59eb3/docs/dcs_reference/apidocs/org/trafodion/dcs/master/listener/package-tree.html
--
diff --git 
a/docs/dcs_reference/apidocs/org/trafodion/dcs/master/listener/package-tree.html
 
b/docs/dcs_reference/apidocs/org/trafodion/dcs/master/listener/package-tree.html
index 01d36eb..553ba64 100644
--- 
a/docs/dcs_reference/apidocs/org/trafodion/dcs/master/listener/package-tree.html
+++ 
b/docs/dcs_reference/apidocs/org/trafodion/dcs/master/listener/package-tree.html
@@ -2,10 +2,10 @@
 
 
 
-
+
 
 org.trafodion.dcs.master.listener Class Hierarchy (Trafodion Database 
Connectivity Services 2.3.0 API)
-
+
 
 
 

http://git-wip-us.apache.org/repos/asf/trafodion-site/blob/02a59eb3/docs/dcs_reference/apidocs/org/trafodion/dcs/master/listener/package-use.html
--
diff --git 
a/docs/dcs_reference/apidocs/org/trafodion/dcs/master/listener/package-use.html 
b/docs/dcs_reference/apidocs/org/trafodion/dcs/master/listener/package-use.html
index ddcd2a7..537eb6c 100644
--- 
a/docs/dcs_reference/apidocs/org/trafodion/dcs/master/listener/package-use.html
+++ 
b/docs/dcs_reference/apidocs/org/trafodion/dcs/master/listener/package-use.html
@@ -2,10 +2,10 @@
 
 
 
-
+
 
 Uses of Package org.trafodion.dcs.master.listener (Trafodion Database 
Connectivity Services 2.3.0 API)
-
+
 
 
 

http://git-wip-us.apache.org/repos/asf/trafodion-site/blob/02a59eb3/docs/dcs_reference/apidocs/org/trafodion/dcs/master/package-frame.html
--
diff --git 
a/docs/dcs_reference/apidocs/org/trafodion/dcs/master/package-frame.html 
b/docs/dcs_reference/apidocs/org/trafodion/dcs/master/package-frame.html
index 8f6a8c2..a3d08ae 100644
--- a/docs/dcs_reference/apidocs/org/trafodion/dcs/master/package-frame.html
+++ b/docs/dcs_reference/apidocs/org/trafodion/dcs/master/package-frame.html
@@ -2,10 +2,10 @@
 
 
 
-
+
 
 org.trafodion.dcs.master (Trafodion Database Connectivity Services 
2.3.0 API)
-
+
 
 
 

http://git-wip-us.apache.org/repos/asf/trafodion-site/blob/02a59eb3/docs/dcs_reference/apidocs/org/trafodion/dcs/master/package-summary.html
--
diff --git 
a/docs/dcs_reference/apidocs/org/trafodion/dcs/master/package-summary.html 
b/docs/dcs_reference/apidocs/org/trafodion/dcs/master/package-summary.html
index defc1e6..e4ad5a1 100644
--- a/docs/dcs_reference/apidocs/org/trafodion/dcs/master/package-summary.html
+++ b/docs/dcs_reference/apidocs/org/trafodion/dcs/master/package-summary.html
@@ -2,10 +2,10 @@
 
 
 
-
+
 
 org.trafodion.dcs.master (

[04/22] trafodion-site git commit: Merge PRs 1514 [TRAFODION-3022] and 1515 [TRAFODION-2960]

2018-04-17 Thread dbirdsall
http://git-wip-us.apache.org/repos/asf/trafodion-site/blob/02a59eb3/docs/jdbct4ref_guide/Trafodion_JDBCT4_Reference_Guide.pdf
--
diff --git a/docs/jdbct4ref_guide/Trafodion_JDBCT4_Reference_Guide.pdf 
b/docs/jdbct4ref_guide/Trafodion_JDBCT4_Reference_Guide.pdf
index f9a46ea..cf37a09 100644
Binary files a/docs/jdbct4ref_guide/Trafodion_JDBCT4_Reference_Guide.pdf and 
b/docs/jdbct4ref_guide/Trafodion_JDBCT4_Reference_Guide.pdf differ

http://git-wip-us.apache.org/repos/asf/trafodion-site/blob/02a59eb3/docs/jdbct4ref_guide/dependencies.html
--
diff --git a/docs/jdbct4ref_guide/dependencies.html 
b/docs/jdbct4ref_guide/dependencies.html
index 536729b..6910bae 100644
--- a/docs/jdbct4ref_guide/dependencies.html
+++ b/docs/jdbct4ref_guide/dependencies.html
@@ -1,5 +1,5 @@
 http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd";>
-
+
 http://www.w3.org/1999/xhtml"; xml:lang="en" lang="en">
   
 
@@ -10,7 +10,7 @@
   @import url("./css/site.css");
 
 
-
+
 
 
 
@@ -27,7 +27,7 @@
 
 
 
-Last Published: 2018-03-26
+Last Published: 2018-04-17
    | Version: 2.3.0
   
 Trafodion JDBC Type 
4 Programmer's Reference Guide

http://git-wip-us.apache.org/repos/asf/trafodion-site/blob/02a59eb3/docs/jdbct4ref_guide/integration.html
--
diff --git a/docs/jdbct4ref_guide/integration.html 
b/docs/jdbct4ref_guide/integration.html
index 554f773..ad0348e 100644
--- a/docs/jdbct4ref_guide/integration.html
+++ b/docs/jdbct4ref_guide/integration.html
@@ -1,5 +1,5 @@
 http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd";>
-
+
 http://www.w3.org/1999/xhtml"; xml:lang="en" lang="en">
   
 
@@ -10,7 +10,7 @@
   @import url("./css/site.css");
 
 
-
+
 
 
 
@@ -27,7 +27,7 @@
 
 
 
-Last Published: 2018-03-26
+Last Published: 2018-04-17
    | Version: 2.3.0
   
 Trafodion JDBC Type 
4 Programmer's Reference Guide

http://git-wip-us.apache.org/repos/asf/trafodion-site/blob/02a59eb3/docs/jdbct4ref_guide/issue-tracking.html
--
diff --git a/docs/jdbct4ref_guide/issue-tracking.html 
b/docs/jdbct4ref_guide/issue-tracking.html
index 0988369..ff7cf86 100644
--- a/docs/jdbct4ref_guide/issue-tracking.html
+++ b/docs/jdbct4ref_guide/issue-tracking.html
@@ -1,5 +1,5 @@
 http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd";>
-
+
 http://www.w3.org/1999/xhtml"; xml:lang="en" lang="en">
   
 
@@ -10,7 +10,7 @@
   @import url("./css/site.css");
 
 
-
+
 
 
 
@@ -27,7 +27,7 @@
 
 
 
-Last Published: 2018-03-26
+Last Published: 2018-04-17
    | Version: 2.3.0
   
 Trafodion JDBC Type 
4 Programmer's Reference Guide

http://git-wip-us.apache.org/repos/asf/trafodion-site/blob/02a59eb3/docs/jdbct4ref_guide/license.html
--
diff --git a/docs/jdbct4ref_guide/license.html 
b/docs/jdbct4ref_guide/license.html
index 0b07b5f..a22c37d 100644
--- a/docs/jdbct4ref_guide/license.html
+++ b/docs/jdbct4ref_guide/license.html
@@ -1,5 +1,5 @@
 http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd";>
-
+
 http://www.w3.org/1999/xhtml"; xml:lang="en" lang="en">
   
 
@@ -10,7 +10,7 @@
   @import url("./css/site.css");
 
 
-
+
 
 
 
@@ -27,7 +27,7 @@
 
 
 
-Last Published: 2018-03-26
+Last Published: 2018-04-17
    | Version: 2.3.0
   
 Trafodion JDBC Type 
4 Programmer's Reference Guide

http://git-wip-us.apache.org/repos/asf/trafodion-site/blob/02a59eb3/docs/jdbct4ref_guide/mail-lists.html
--
diff --git a/docs/jdbct4ref_guide/mail-lists.html 
b/docs/jdbct4ref_guide/mail-lists.html
index f82c9fc..606d02f 100644
--- a/docs/jdbct4ref_guide/mail-lists.html
+++ b/docs/jdbct4ref_guide/mail-lists.html
@@ -1,5 +1,5 @@
 http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd";>
-
+
 http://www.w3.org/1999/xhtml"; xml:lang="en" lang="en">
   
 
@@ -10,7 +10,7 @@
   @import url("./css/site.css");
 
 
-
+
 
 
 
@@ -27,7 +27,7 @@
 
 
 
-Last Published: 2018-03-26
+Last Published: 2018-04-17
    | Version: 2.3.0
  

[21/22] trafodion-site git commit: Merge PRs 1514 [TRAFODION-3022] and 1515 [TRAFODION-2960]

2018-04-17 Thread dbirdsall
http://git-wip-us.apache.org/repos/asf/trafodion-site/blob/02a59eb3/docs/2.3.0/command_interface/issue-tracking.html
--
diff --git a/docs/2.3.0/command_interface/issue-tracking.html 
b/docs/2.3.0/command_interface/issue-tracking.html
index 70b65f4..6fc398b 100644
--- a/docs/2.3.0/command_interface/issue-tracking.html
+++ b/docs/2.3.0/command_interface/issue-tracking.html
@@ -1,5 +1,5 @@
 http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd";>
-
+
 http://www.w3.org/1999/xhtml"; xml:lang="en" lang="en">
   
 
@@ -10,7 +10,7 @@
   @import url("./css/site.css");
 
 
-
+
 
 
 
@@ -27,7 +27,7 @@
 
 
 
-Last Published: 2018-03-26
+Last Published: 2018-04-17
    | Version: 2.3.0
   
 Trafodion Command Interface Guide

http://git-wip-us.apache.org/repos/asf/trafodion-site/blob/02a59eb3/docs/2.3.0/command_interface/license.html
--
diff --git a/docs/2.3.0/command_interface/license.html 
b/docs/2.3.0/command_interface/license.html
index 501acf1..7bb9985 100644
--- a/docs/2.3.0/command_interface/license.html
+++ b/docs/2.3.0/command_interface/license.html
@@ -1,5 +1,5 @@
 http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd";>
-
+
 http://www.w3.org/1999/xhtml"; xml:lang="en" lang="en">
   
 
@@ -10,7 +10,7 @@
   @import url("./css/site.css");
 
 
-
+
 
 
 
@@ -27,7 +27,7 @@
 
 
 
-Last Published: 2018-03-26
+Last Published: 2018-04-17
    | Version: 2.3.0
   
 Trafodion Command Interface Guide

http://git-wip-us.apache.org/repos/asf/trafodion-site/blob/02a59eb3/docs/2.3.0/command_interface/mail-lists.html
--
diff --git a/docs/2.3.0/command_interface/mail-lists.html 
b/docs/2.3.0/command_interface/mail-lists.html
index e764ad0..78df323 100644
--- a/docs/2.3.0/command_interface/mail-lists.html
+++ b/docs/2.3.0/command_interface/mail-lists.html
@@ -1,5 +1,5 @@
 http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd";>
-
+
 http://www.w3.org/1999/xhtml"; xml:lang="en" lang="en">
   
 
@@ -10,7 +10,7 @@
   @import url("./css/site.css");
 
 
-
+
 
 
 
@@ -27,7 +27,7 @@
 
 
 
-Last Published: 2018-03-26
+Last Published: 2018-04-17
    | Version: 2.3.0
   
 Trafodion Command Interface Guide

http://git-wip-us.apache.org/repos/asf/trafodion-site/blob/02a59eb3/docs/2.3.0/command_interface/project-info.html
--
diff --git a/docs/2.3.0/command_interface/project-info.html 
b/docs/2.3.0/command_interface/project-info.html
index 5f052b7..ce5b5ce 100644
--- a/docs/2.3.0/command_interface/project-info.html
+++ b/docs/2.3.0/command_interface/project-info.html
@@ -1,5 +1,5 @@
 http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd";>
-
+
 http://www.w3.org/1999/xhtml"; xml:lang="en" lang="en">
   
 
@@ -10,7 +10,7 @@
   @import url("./css/site.css");
 
 
-
+
 
 
 
@@ -27,7 +27,7 @@
 
 
 
-Last Published: 2018-03-26
+Last Published: 2018-04-17
    | Version: 2.3.0
   
 Trafodion Command Interface Guide

http://git-wip-us.apache.org/repos/asf/trafodion-site/blob/02a59eb3/docs/2.3.0/command_interface/project-summary.html
--
diff --git a/docs/2.3.0/command_interface/project-summary.html 
b/docs/2.3.0/command_interface/project-summary.html
index 0a43339..493e77a 100644
--- a/docs/2.3.0/command_interface/project-summary.html
+++ b/docs/2.3.0/command_interface/project-summary.html
@@ -1,5 +1,5 @@
 http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd";>
-
+
 http://www.w3.org/1999/xhtml"; xml:lang="en" lang="en">
   
 
@@ -10,7 +10,7 @@
   @import url("./css/site.css");
 
 
-
+
 
 
 
@@ -27,7 +27,7 @@
 
 
 
-Last Published: 2018-03-26
+Last Published: 2018-04-17
    | Version: 2.3.0
   
 Trafodion Command Interface Guide

http://git-wip-us.apache.org/repos/asf/trafodion-site/blob/02a59eb3/docs/2.3.0/command_interface/source-repository.html
--
diff --git a/docs/2.3.0/command_interface/source-repository.html 
b/docs/2.3.0/command_i

[20/22] trafodion-site git commit: Merge PRs 1514 [TRAFODION-3022] and 1515 [TRAFODION-2960]

2018-04-17 Thread dbirdsall
http://git-wip-us.apache.org/repos/asf/trafodion-site/blob/02a59eb3/docs/2.3.0/dcs_reference/apidocs/org/trafodion/dcs/master/QueryPlanModel.PlanSummaryInfo.html
--
diff --git 
a/docs/2.3.0/dcs_reference/apidocs/org/trafodion/dcs/master/QueryPlanModel.PlanSummaryInfo.html
 
b/docs/2.3.0/dcs_reference/apidocs/org/trafodion/dcs/master/QueryPlanModel.PlanSummaryInfo.html
index f66ab1d..3db2555 100644
--- 
a/docs/2.3.0/dcs_reference/apidocs/org/trafodion/dcs/master/QueryPlanModel.PlanSummaryInfo.html
+++ 
b/docs/2.3.0/dcs_reference/apidocs/org/trafodion/dcs/master/QueryPlanModel.PlanSummaryInfo.html
@@ -2,10 +2,10 @@
 
 
 
-
+
 
 QueryPlanModel.PlanSummaryInfo (Trafodion Database Connectivity 
Services 2.3.0 API)
-
+
 
 
 

http://git-wip-us.apache.org/repos/asf/trafodion-site/blob/02a59eb3/docs/2.3.0/dcs_reference/apidocs/org/trafodion/dcs/master/QueryPlanModel.QueryPlanData.html
--
diff --git 
a/docs/2.3.0/dcs_reference/apidocs/org/trafodion/dcs/master/QueryPlanModel.QueryPlanData.html
 
b/docs/2.3.0/dcs_reference/apidocs/org/trafodion/dcs/master/QueryPlanModel.QueryPlanData.html
index 75208bb..45f61b8 100644
--- 
a/docs/2.3.0/dcs_reference/apidocs/org/trafodion/dcs/master/QueryPlanModel.QueryPlanData.html
+++ 
b/docs/2.3.0/dcs_reference/apidocs/org/trafodion/dcs/master/QueryPlanModel.QueryPlanData.html
@@ -2,10 +2,10 @@
 
 
 
-
+
 
 QueryPlanModel.QueryPlanData (Trafodion Database Connectivity Services 
2.3.0 API)
-
+
 
 
 

http://git-wip-us.apache.org/repos/asf/trafodion-site/blob/02a59eb3/docs/2.3.0/dcs_reference/apidocs/org/trafodion/dcs/master/QueryPlanModel.html
--
diff --git 
a/docs/2.3.0/dcs_reference/apidocs/org/trafodion/dcs/master/QueryPlanModel.html 
b/docs/2.3.0/dcs_reference/apidocs/org/trafodion/dcs/master/QueryPlanModel.html
index 9bb551c..18cb99e 100644
--- 
a/docs/2.3.0/dcs_reference/apidocs/org/trafodion/dcs/master/QueryPlanModel.html
+++ 
b/docs/2.3.0/dcs_reference/apidocs/org/trafodion/dcs/master/QueryPlanModel.html
@@ -2,10 +2,10 @@
 
 
 
-
+
 
 QueryPlanModel (Trafodion Database Connectivity Services 2.3.0 
API)
-
+
 
 
 

http://git-wip-us.apache.org/repos/asf/trafodion-site/blob/02a59eb3/docs/2.3.0/dcs_reference/apidocs/org/trafodion/dcs/master/QueryPlanResponse.html
--
diff --git 
a/docs/2.3.0/dcs_reference/apidocs/org/trafodion/dcs/master/QueryPlanResponse.html
 
b/docs/2.3.0/dcs_reference/apidocs/org/trafodion/dcs/master/QueryPlanResponse.html
index 2c15d64..a6f9dfe 100644
--- 
a/docs/2.3.0/dcs_reference/apidocs/org/trafodion/dcs/master/QueryPlanResponse.html
+++ 
b/docs/2.3.0/dcs_reference/apidocs/org/trafodion/dcs/master/QueryPlanResponse.html
@@ -2,10 +2,10 @@
 
 
 
-
+
 
 QueryPlanResponse (Trafodion Database Connectivity Services 2.3.0 
API)
-
+
 
 
 

http://git-wip-us.apache.org/repos/asf/trafodion-site/blob/02a59eb3/docs/2.3.0/dcs_reference/apidocs/org/trafodion/dcs/master/RegisteredServer.html
--
diff --git 
a/docs/2.3.0/dcs_reference/apidocs/org/trafodion/dcs/master/RegisteredServer.html
 
b/docs/2.3.0/dcs_reference/apidocs/org/trafodion/dcs/master/RegisteredServer.html
index c13f6fd..315b099 100644
--- 
a/docs/2.3.0/dcs_reference/apidocs/org/trafodion/dcs/master/RegisteredServer.html
+++ 
b/docs/2.3.0/dcs_reference/apidocs/org/trafodion/dcs/master/RegisteredServer.html
@@ -2,10 +2,10 @@
 
 
 
-
+
 
 RegisteredServer (Trafodion Database Connectivity Services 2.3.0 
API)
-
+
 
 
 

http://git-wip-us.apache.org/repos/asf/trafodion-site/blob/02a59eb3/docs/2.3.0/dcs_reference/apidocs/org/trafodion/dcs/master/RunningServer.html
--
diff --git 
a/docs/2.3.0/dcs_reference/apidocs/org/trafodion/dcs/master/RunningServer.html 
b/docs/2.3.0/dcs_reference/apidocs/org/trafodion/dcs/master/RunningServer.html
index d78357c..8e5916e 100644
--- 
a/docs/2.3.0/dcs_reference/apidocs/org/trafodion/dcs/master/RunningServer.html
+++ 
b/docs/2.3.0/dcs_reference/apidocs/org/trafodion/dcs/master/RunningServer.html
@@ -2,10 +2,10 @@
 
 
 
-
+
 
 RunningServer (Trafodion Database Connectivity Services 2.3.0 
API)
-
+
 
 
 

http://git-wip-us.apache.org/repos/asf/trafodion-site/blob/02a59eb3/docs/2.3.0/dcs_reference/apidocs/org/trafodion/dcs/master/ServerItem.html
--
diff --git 
a/docs/2.3.0/dcs_reference/apidocs/org/trafodion/dcs/master/ServerItem.html 
b/docs/2.3.0/dcs_reference/apidocs/org/trafodion/dcs/master/ServerItem.html
index c519e3b..864cc2a 100644
--- a/docs/2.3.0/dcs_reference/apidocs/org/trafodion/dcs/master/ServerItem.html
+++ b/docs/2.3.0/dcs_reference/apidocs/org/trafodion/dcs/master/ServerItem.html
@@ -2,10 +2,10 @@

[08/22] trafodion-site git commit: Merge PRs 1514 [TRAFODION-3022] and 1515 [TRAFODION-2960]

2018-04-17 Thread dbirdsall
http://git-wip-us.apache.org/repos/asf/trafodion-site/blob/02a59eb3/docs/dcs_reference/apidocs/org/trafodion/dcs/servermt/serverDriverInputOutput/class-use/OutConnectionContext.html
--
diff --git 
a/docs/dcs_reference/apidocs/org/trafodion/dcs/servermt/serverDriverInputOutput/class-use/OutConnectionContext.html
 
b/docs/dcs_reference/apidocs/org/trafodion/dcs/servermt/serverDriverInputOutput/class-use/OutConnectionContext.html
index e197ac4..a50643f 100644
--- 
a/docs/dcs_reference/apidocs/org/trafodion/dcs/servermt/serverDriverInputOutput/class-use/OutConnectionContext.html
+++ 
b/docs/dcs_reference/apidocs/org/trafodion/dcs/servermt/serverDriverInputOutput/class-use/OutConnectionContext.html
@@ -2,10 +2,10 @@
 
 
 
-
+
 
 Uses of Class 
org.trafodion.dcs.servermt.serverDriverInputOutput.OutConnectionContext 
(Trafodion Database Connectivity Services 2.3.0 API)
-
+
 
 
 

http://git-wip-us.apache.org/repos/asf/trafodion-site/blob/02a59eb3/docs/dcs_reference/apidocs/org/trafodion/dcs/servermt/serverDriverInputOutput/class-use/SQLDataValue.html
--
diff --git 
a/docs/dcs_reference/apidocs/org/trafodion/dcs/servermt/serverDriverInputOutput/class-use/SQLDataValue.html
 
b/docs/dcs_reference/apidocs/org/trafodion/dcs/servermt/serverDriverInputOutput/class-use/SQLDataValue.html
index adafff9..7e494d1 100644
--- 
a/docs/dcs_reference/apidocs/org/trafodion/dcs/servermt/serverDriverInputOutput/class-use/SQLDataValue.html
+++ 
b/docs/dcs_reference/apidocs/org/trafodion/dcs/servermt/serverDriverInputOutput/class-use/SQLDataValue.html
@@ -2,10 +2,10 @@
 
 
 
-
+
 
 Uses of Class 
org.trafodion.dcs.servermt.serverDriverInputOutput.SQLDataValue (Trafodion 
Database Connectivity Services 2.3.0 API)
-
+
 
 
 

http://git-wip-us.apache.org/repos/asf/trafodion-site/blob/02a59eb3/docs/dcs_reference/apidocs/org/trafodion/dcs/servermt/serverDriverInputOutput/class-use/SQLValue.html
--
diff --git 
a/docs/dcs_reference/apidocs/org/trafodion/dcs/servermt/serverDriverInputOutput/class-use/SQLValue.html
 
b/docs/dcs_reference/apidocs/org/trafodion/dcs/servermt/serverDriverInputOutput/class-use/SQLValue.html
index fa9aba6..b191c07 100644
--- 
a/docs/dcs_reference/apidocs/org/trafodion/dcs/servermt/serverDriverInputOutput/class-use/SQLValue.html
+++ 
b/docs/dcs_reference/apidocs/org/trafodion/dcs/servermt/serverDriverInputOutput/class-use/SQLValue.html
@@ -2,10 +2,10 @@
 
 
 
-
+
 
 Uses of Class 
org.trafodion.dcs.servermt.serverDriverInputOutput.SQLValue (Trafodion Database 
Connectivity Services 2.3.0 API)
-
+
 
 
 

http://git-wip-us.apache.org/repos/asf/trafodion-site/blob/02a59eb3/docs/dcs_reference/apidocs/org/trafodion/dcs/servermt/serverDriverInputOutput/class-use/SQLValueList.html
--
diff --git 
a/docs/dcs_reference/apidocs/org/trafodion/dcs/servermt/serverDriverInputOutput/class-use/SQLValueList.html
 
b/docs/dcs_reference/apidocs/org/trafodion/dcs/servermt/serverDriverInputOutput/class-use/SQLValueList.html
index 065b923..018481b 100644
--- 
a/docs/dcs_reference/apidocs/org/trafodion/dcs/servermt/serverDriverInputOutput/class-use/SQLValueList.html
+++ 
b/docs/dcs_reference/apidocs/org/trafodion/dcs/servermt/serverDriverInputOutput/class-use/SQLValueList.html
@@ -2,10 +2,10 @@
 
 
 
-
+
 
 Uses of Class 
org.trafodion.dcs.servermt.serverDriverInputOutput.SQLValueList (Trafodion 
Database Connectivity Services 2.3.0 API)
-
+
 
 
 

http://git-wip-us.apache.org/repos/asf/trafodion-site/blob/02a59eb3/docs/dcs_reference/apidocs/org/trafodion/dcs/servermt/serverDriverInputOutput/class-use/SQLWarningOrError.html
--
diff --git 
a/docs/dcs_reference/apidocs/org/trafodion/dcs/servermt/serverDriverInputOutput/class-use/SQLWarningOrError.html
 
b/docs/dcs_reference/apidocs/org/trafodion/dcs/servermt/serverDriverInputOutput/class-use/SQLWarningOrError.html
index c7c0a9d..b6df503 100644
--- 
a/docs/dcs_reference/apidocs/org/trafodion/dcs/servermt/serverDriverInputOutput/class-use/SQLWarningOrError.html
+++ 
b/docs/dcs_reference/apidocs/org/trafodion/dcs/servermt/serverDriverInputOutput/class-use/SQLWarningOrError.html
@@ -2,10 +2,10 @@
 
 
 
-
+
 
 Uses of Class 
org.trafodion.dcs.servermt.serverDriverInputOutput.SQLWarningOrError (Trafodion 
Database Connectivity Services 2.3.0 API)
-
+
 
 
 

http://git-wip-us.apache.org/repos/asf/trafodion-site/blob/02a59eb3/docs/dcs_reference/apidocs/org/trafodion/dcs/servermt/serverDriverInputOutput/class-use/SQLWarningOrErrorList.html
--
diff --git 
a/docs/dcs_reference/apidocs/org/trafodion/dcs/servermt/serverDriverInputOutput/class-use/SQLWarningOrErrorList.html
 
b/docs/dcs_reference/apidocs/o

[05/22] trafodion-site git commit: Merge PRs 1514 [TRAFODION-3022] and 1515 [TRAFODION-2960]

2018-04-17 Thread dbirdsall
http://git-wip-us.apache.org/repos/asf/trafodion-site/blob/02a59eb3/docs/dcs_reference/xref/org/trafodion/dcs/server/ServerManager.html
--
diff --git 
a/docs/dcs_reference/xref/org/trafodion/dcs/server/ServerManager.html 
b/docs/dcs_reference/xref/org/trafodion/dcs/server/ServerManager.html
index ad39675..942dc2a 100644
--- a/docs/dcs_reference/xref/org/trafodion/dcs/server/ServerManager.html
+++ b/docs/dcs_reference/xref/org/trafodion/dcs/server/ServerManager.html
@@ -93,537 +93,561 @@
 83  private int 
maxRestartAttempts;
 84  private int 
retryIntervalMillis;
 85  private String nid = null;
-86  
-87  class RegisteredWatcher
 implements Watcher {
-88  CountDownLatch 
startSignal;
-89  
-90  public RegisteredWatcher(CountDownLatch
 startSignal) {
-91  this.startSignal = startSignal;
-92  }
+86  private static String userProgKeepaliveStatus;
+87  private static int 
userProgKeepaliveIdletime;
+88  private static int 
userProgKeepaliveIntervaltime;
+89  private static int 
userProgKeepaliveRetrycount;
+90  
+91  class RegisteredWatcher
 implements Watcher {
+92  CountDownLatch 
startSignal;
 93  
-94  public void 
process(WatchedEvent event) {
-95  if (event.getType() == 
Event.EventType.NodeDeleted) {
-96  String 
znodePath = event.getPath();
-97  if (LOG.isDebugEnabled()) {
-98  
LOG.debug("Registered znode deleted [" + 
znodePath + "]");
-99  }
-100 
try {
-101 
startSignal.countDown();
-102 } 
catch (Exception e) {
-103 
e.printStackTrace();
-104 
LOG.error(e);
-105 }
-106 }
-107 }
-108 }
-109 
-110 class ServerMonitor
 {
-111 ScriptContext
 scriptContext = new ScriptContext();
-112 int childInstance;
-113 String 
registeredPath;
-114 Stat stat = 
null;
-115 boolean isRunning = false;
-116 String nid;
-117 String pid;
-118 
-119 public ServerMonitor(int childInstance, String registeredPath) {
-120 this.childInstance = childInstance;
-121 this.registeredPath = registeredPath;
-122 }
-123 
-124 public boolean monitor() {
-125 try {
-126 
if (LOG.isDebugEnabled()) {
-127 
LOG.debug("registered path [" + registeredPath 
+ "]");
-128 }
-129 stat 
= zkc.exists(registeredPath, false);
-130 
if (stat != null) { // User program 
znode found in
-131   
  // /registered...check pid
-132 
isRunning = isPidRunning();
-133 
if (LOG.isDebugEnabled()) {
-134   
  LOG.debug("[" + (Integer.parseInt(nid) + 1) + 
":" + childInstance + "]." + pid + ".isRunning 
["
-135   
  + isRunning + "]");
-136 }
-137 }
-138 } catch (Exception e) {
-139 
LOG.warn(e.getMessage(), e);
-140 
isRunning = false;
-141 
return isRunning;
-142 }
-143 
-144 return isRunning;
-145 }
-146 
-147 private boolean isPidRunning() throws Exception {
-148 String 
data = Bytes.toString(zkc.getData(registeredPath, false,
-149 
stat));
-150 Scanner 
scn = new Scanner(data);
-151 
scn.useDelimiter(":");
-152 
scn.next();// state
-153 
scn.next();// timestamp
-154 
scn.next();// dialogue Id
-155 nid = 
scn.next();// nid
-156 pid = 
scn.next();// pid
-157 
scn.close();
-158 
scriptContext.setHostName(hostName);
-159 
scriptContext.setScriptName(Constants.SYS_SHELL_SCRIPT_NAME);
-160 
scriptContext.setCommand("ps -p " + pid);
-161 
ScriptManager.getInstance().runScript(scriptContext);
-162 return scriptContext.getExitCode() != 0 ? false : 
true;
-163 }
-164 }
-165 
-166 class ServerRunner 
{
-167 ScriptContext
 scriptContext;
-168 String 
registeredPath;
-169 int childInstance;
-170 
-171 public ServerRunner(int childInstance, String registeredPath) {
-172 this.scriptContext = new ScriptContext();
-173 this.childInstance = childInstance;
-174 this.registeredPath = registeredPath;
-175 
scriptContext.setHostName(hostName);
-176 
scriptContext.setScriptName(Constants.SYS_SHELL_SCRIPT_NAME);
-177 String 
command = userProgramCommand
-178 
.replace("-ZKHOST", "-ZKHOST " + zkc.getZkQuorum() + " ")
-179 
.replace

[22/22] trafodion-site git commit: Merge PRs 1514 [TRAFODION-3022] and 1515 [TRAFODION-2960]

2018-04-17 Thread dbirdsall
Merge PRs 1514 [TRAFODION-3022] and 1515 [TRAFODION-2960]


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

Branch: refs/heads/asf-site
Commit: 02a59eb3770e19d80ac4d97421efa6881980cfe1
Parents: 3c03ccb
Author: Dave Birdsall 
Authored: Tue Apr 17 23:13:55 2018 +
Committer: Dave Birdsall 
Committed: Tue Apr 17 23:13:55 2018 +

--
 architecture-overview.html  |3 +-
 contributing-redirect.html  |3 +-
 .../Trafodion_Client_Installation_Guide.pdf |  Bin 2602361 -> 2602361 bytes
 docs/2.3.0/client_install/dependencies.html |6 +-
 docs/2.3.0/client_install/integration.html  |6 +-
 docs/2.3.0/client_install/issue-tracking.html   |6 +-
 docs/2.3.0/client_install/license.html  |6 +-
 docs/2.3.0/client_install/mail-lists.html   |6 +-
 docs/2.3.0/client_install/project-info.html |6 +-
 docs/2.3.0/client_install/project-summary.html  |6 +-
 .../2.3.0/client_install/source-repository.html |6 +-
 docs/2.3.0/client_install/team-list.html|6 +-
 .../Trafodion_Command_Interface_Guide.pdf   |  Bin 2896305 -> 2896305 bytes
 docs/2.3.0/command_interface/dependencies.html  |6 +-
 docs/2.3.0/command_interface/index.html |2 +-
 docs/2.3.0/command_interface/integration.html   |6 +-
 .../2.3.0/command_interface/issue-tracking.html |6 +-
 docs/2.3.0/command_interface/license.html   |6 +-
 docs/2.3.0/command_interface/mail-lists.html|6 +-
 docs/2.3.0/command_interface/project-info.html  |6 +-
 .../command_interface/project-summary.html  |6 +-
 .../command_interface/source-repository.html|6 +-
 docs/2.3.0/command_interface/team-list.html |6 +-
 .../Trafodion_CQD_Reference_Guide.pdf   |  Bin 764418 -> 764418 bytes
 docs/2.3.0/cqd_reference/dependencies.html  |6 +-
 docs/2.3.0/cqd_reference/integration.html   |6 +-
 docs/2.3.0/cqd_reference/issue-tracking.html|6 +-
 docs/2.3.0/cqd_reference/license.html   |6 +-
 docs/2.3.0/cqd_reference/mail-lists.html|6 +-
 docs/2.3.0/cqd_reference/project-info.html  |6 +-
 docs/2.3.0/cqd_reference/project-summary.html   |6 +-
 docs/2.3.0/cqd_reference/source-repository.html |6 +-
 docs/2.3.0/cqd_reference/team-list.html |6 +-
 .../dcs_reference/apidocs/allclasses-frame.html |4 +-
 .../apidocs/allclasses-noframe.html |4 +-
 .../dcs_reference/apidocs/constant-values.html  |   62 +-
 .../dcs_reference/apidocs/deprecated-list.html  |4 +-
 docs/2.3.0/dcs_reference/apidocs/help-doc.html  |4 +-
 docs/2.3.0/dcs_reference/apidocs/index-all.html |   36 +-
 docs/2.3.0/dcs_reference/apidocs/index.html |2 +-
 .../apidocs/org/trafodion/dcs/Constants.html|  140 ++-
 .../org/trafodion/dcs/VersionAnnotation.html|4 +-
 .../org/trafodion/dcs/class-use/Constants.html  |4 +-
 .../dcs/class-use/VersionAnnotation.html|4 +-
 .../org/trafodion/dcs/http/FilterContainer.html |4 +-
 .../org/trafodion/dcs/http/HtmlQuoting.html |4 +-
 ...erver.DummyServletFilter.RequestChecker.html |4 +-
 .../dcs/http/HttpServer.DummyServletFilter.html |4 +-
 ...Server.QuotingInputFilter.RequestQuoter.html |4 +-
 .../dcs/http/HttpServer.QuotingInputFilter.html |4 +-
 .../dcs/http/HttpServer.StackServlet.html   |4 +-
 .../org/trafodion/dcs/http/HttpServer.html  |4 +-
 .../dcs/http/class-use/FilterContainer.html |4 +-
 .../dcs/http/class-use/HtmlQuoting.html |4 +-
 ...erver.DummyServletFilter.RequestChecker.html |4 +-
 .../HttpServer.DummyServletFilter.html  |4 +-
 ...Server.QuotingInputFilter.RequestQuoter.html |4 +-
 .../HttpServer.QuotingInputFilter.html  |4 +-
 .../http/class-use/HttpServer.StackServlet.html |4 +-
 .../dcs/http/class-use/HttpServer.html  |4 +-
 .../org/trafodion/dcs/http/package-frame.html   |4 +-
 .../org/trafodion/dcs/http/package-summary.html |4 +-
 .../org/trafodion/dcs/http/package-tree.html|4 +-
 .../org/trafodion/dcs/http/package-use.html |4 +-
 .../org/trafodion/dcs/master/DcsMaster.html |4 +-
 .../org/trafodion/dcs/master/FloatingIp.html|4 +-
 .../dcs/master/MasterLeaderElection.html|4 +-
 .../dcs/master/MasterStatusServlet.html |4 +-
 .../org/trafodion/dcs/master/Metrics.html   |4 +-
 .../master/QueryPlanModel.PlanSummaryInfo.html  |4 +-
 .../master/QueryPlanModel.QueryPlanData.html|4 +-
 .../trafodion/dcs/master/QueryPlanModel.html|4 +-
 .../trafodion/dcs/master/QueryPl

[12/22] trafodion-site git commit: Merge PRs 1514 [TRAFODION-3022] and 1515 [TRAFODION-2960]

2018-04-17 Thread dbirdsall
http://git-wip-us.apache.org/repos/asf/trafodion-site/blob/02a59eb3/docs/2.3.0/rest_reference/apidocs/org/trafodion/rest/script/package-frame.html
--
diff --git 
a/docs/2.3.0/rest_reference/apidocs/org/trafodion/rest/script/package-frame.html
 
b/docs/2.3.0/rest_reference/apidocs/org/trafodion/rest/script/package-frame.html
index cc838f7..7d1b75f 100644
--- 
a/docs/2.3.0/rest_reference/apidocs/org/trafodion/rest/script/package-frame.html
+++ 
b/docs/2.3.0/rest_reference/apidocs/org/trafodion/rest/script/package-frame.html
@@ -2,10 +2,10 @@
 
 
 
-
+
 
 org.trafodion.rest.script (Trafodion REST 2.3.0 API)
-
+
 
 
 

http://git-wip-us.apache.org/repos/asf/trafodion-site/blob/02a59eb3/docs/2.3.0/rest_reference/apidocs/org/trafodion/rest/script/package-summary.html
--
diff --git 
a/docs/2.3.0/rest_reference/apidocs/org/trafodion/rest/script/package-summary.html
 
b/docs/2.3.0/rest_reference/apidocs/org/trafodion/rest/script/package-summary.html
index 89809aa..f41f3a7 100644
--- 
a/docs/2.3.0/rest_reference/apidocs/org/trafodion/rest/script/package-summary.html
+++ 
b/docs/2.3.0/rest_reference/apidocs/org/trafodion/rest/script/package-summary.html
@@ -2,10 +2,10 @@
 
 
 
-
+
 
 org.trafodion.rest.script (Trafodion REST 2.3.0 API)
-
+
 
 
 

http://git-wip-us.apache.org/repos/asf/trafodion-site/blob/02a59eb3/docs/2.3.0/rest_reference/apidocs/org/trafodion/rest/script/package-tree.html
--
diff --git 
a/docs/2.3.0/rest_reference/apidocs/org/trafodion/rest/script/package-tree.html 
b/docs/2.3.0/rest_reference/apidocs/org/trafodion/rest/script/package-tree.html
index a256d68..67163fd 100644
--- 
a/docs/2.3.0/rest_reference/apidocs/org/trafodion/rest/script/package-tree.html
+++ 
b/docs/2.3.0/rest_reference/apidocs/org/trafodion/rest/script/package-tree.html
@@ -2,10 +2,10 @@
 
 
 
-
+
 
 org.trafodion.rest.script Class Hierarchy (Trafodion REST 2.3.0 
API)
-
+
 
 
 

http://git-wip-us.apache.org/repos/asf/trafodion-site/blob/02a59eb3/docs/2.3.0/rest_reference/apidocs/org/trafodion/rest/script/package-use.html
--
diff --git 
a/docs/2.3.0/rest_reference/apidocs/org/trafodion/rest/script/package-use.html 
b/docs/2.3.0/rest_reference/apidocs/org/trafodion/rest/script/package-use.html
index e3d5c8d..30ef63d 100644
--- 
a/docs/2.3.0/rest_reference/apidocs/org/trafodion/rest/script/package-use.html
+++ 
b/docs/2.3.0/rest_reference/apidocs/org/trafodion/rest/script/package-use.html
@@ -2,10 +2,10 @@
 
 
 
-
+
 
 Uses of Package org.trafodion.rest.script (Trafodion REST 2.3.0 
API)
-
+
 
 
 

http://git-wip-us.apache.org/repos/asf/trafodion-site/blob/02a59eb3/docs/2.3.0/rest_reference/apidocs/org/trafodion/rest/util/Base64.Base64InputStream.html
--
diff --git 
a/docs/2.3.0/rest_reference/apidocs/org/trafodion/rest/util/Base64.Base64InputStream.html
 
b/docs/2.3.0/rest_reference/apidocs/org/trafodion/rest/util/Base64.Base64InputStream.html
index 8b57973..4abfef8 100644
--- 
a/docs/2.3.0/rest_reference/apidocs/org/trafodion/rest/util/Base64.Base64InputStream.html
+++ 
b/docs/2.3.0/rest_reference/apidocs/org/trafodion/rest/util/Base64.Base64InputStream.html
@@ -2,10 +2,10 @@
 
 
 
-
+
 
 Base64.Base64InputStream (Trafodion REST 2.3.0 API)
-
+
 
 
 

http://git-wip-us.apache.org/repos/asf/trafodion-site/blob/02a59eb3/docs/2.3.0/rest_reference/apidocs/org/trafodion/rest/util/Base64.Base64OutputStream.html
--
diff --git 
a/docs/2.3.0/rest_reference/apidocs/org/trafodion/rest/util/Base64.Base64OutputStream.html
 
b/docs/2.3.0/rest_reference/apidocs/org/trafodion/rest/util/Base64.Base64OutputStream.html
index c832175..6b029dd 100644
--- 
a/docs/2.3.0/rest_reference/apidocs/org/trafodion/rest/util/Base64.Base64OutputStream.html
+++ 
b/docs/2.3.0/rest_reference/apidocs/org/trafodion/rest/util/Base64.Base64OutputStream.html
@@ -2,10 +2,10 @@
 
 
 
-
+
 
 Base64.Base64OutputStream (Trafodion REST 2.3.0 API)
-
+
 
 
 

http://git-wip-us.apache.org/repos/asf/trafodion-site/blob/02a59eb3/docs/2.3.0/rest_reference/apidocs/org/trafodion/rest/util/Base64.html
--
diff --git 
a/docs/2.3.0/rest_reference/apidocs/org/trafodion/rest/util/Base64.html 
b/docs/2.3.0/rest_reference/apidocs/org/trafodion/rest/util/Base64.html
index d47381e..1a6d3dd 100644
--- a/docs/2.3.0/rest_reference/apidocs/org/trafodion/rest/util/Base64.html
+++ b/docs/2.3.0/rest_reference/apidocs/org/trafodion/rest/util/Base64.html
@@ -2,10 +2,10 @@
 
 
 
-
+
 
 Base64 (Trafodion REST 2.3.0 API)
-
+
 
 
 

http://git-wip-us.apache.org/repos/asf/trafodion-site/blob/02a59eb3/docs/2.3.0/rest_reference/apidocs/org/tr

[02/22] trafodion-site git commit: Merge PRs 1514 [TRAFODION-3022] and 1515 [TRAFODION-2960]

2018-04-17 Thread dbirdsall
http://git-wip-us.apache.org/repos/asf/trafodion-site/blob/02a59eb3/docs/rest_reference/apidocs/org/trafodion/rest/util/Base64.Base64InputStream.html
--
diff --git 
a/docs/rest_reference/apidocs/org/trafodion/rest/util/Base64.Base64InputStream.html
 
b/docs/rest_reference/apidocs/org/trafodion/rest/util/Base64.Base64InputStream.html
index 8b57973..4abfef8 100644
--- 
a/docs/rest_reference/apidocs/org/trafodion/rest/util/Base64.Base64InputStream.html
+++ 
b/docs/rest_reference/apidocs/org/trafodion/rest/util/Base64.Base64InputStream.html
@@ -2,10 +2,10 @@
 
 
 
-
+
 
 Base64.Base64InputStream (Trafodion REST 2.3.0 API)
-
+
 
 
 

http://git-wip-us.apache.org/repos/asf/trafodion-site/blob/02a59eb3/docs/rest_reference/apidocs/org/trafodion/rest/util/Base64.Base64OutputStream.html
--
diff --git 
a/docs/rest_reference/apidocs/org/trafodion/rest/util/Base64.Base64OutputStream.html
 
b/docs/rest_reference/apidocs/org/trafodion/rest/util/Base64.Base64OutputStream.html
index c832175..6b029dd 100644
--- 
a/docs/rest_reference/apidocs/org/trafodion/rest/util/Base64.Base64OutputStream.html
+++ 
b/docs/rest_reference/apidocs/org/trafodion/rest/util/Base64.Base64OutputStream.html
@@ -2,10 +2,10 @@
 
 
 
-
+
 
 Base64.Base64OutputStream (Trafodion REST 2.3.0 API)
-
+
 
 
 

http://git-wip-us.apache.org/repos/asf/trafodion-site/blob/02a59eb3/docs/rest_reference/apidocs/org/trafodion/rest/util/Base64.html
--
diff --git a/docs/rest_reference/apidocs/org/trafodion/rest/util/Base64.html 
b/docs/rest_reference/apidocs/org/trafodion/rest/util/Base64.html
index d47381e..1a6d3dd 100644
--- a/docs/rest_reference/apidocs/org/trafodion/rest/util/Base64.html
+++ b/docs/rest_reference/apidocs/org/trafodion/rest/util/Base64.html
@@ -2,10 +2,10 @@
 
 
 
-
+
 
 Base64 (Trafodion REST 2.3.0 API)
-
+
 
 
 

http://git-wip-us.apache.org/repos/asf/trafodion-site/blob/02a59eb3/docs/rest_reference/apidocs/org/trafodion/rest/util/Bytes.html
--
diff --git a/docs/rest_reference/apidocs/org/trafodion/rest/util/Bytes.html 
b/docs/rest_reference/apidocs/org/trafodion/rest/util/Bytes.html
index 11d6203..c5a2f6a 100644
--- a/docs/rest_reference/apidocs/org/trafodion/rest/util/Bytes.html
+++ b/docs/rest_reference/apidocs/org/trafodion/rest/util/Bytes.html
@@ -2,10 +2,10 @@
 
 
 
-
+
 
 Bytes (Trafodion REST 2.3.0 API)
-
+
 
 
 

http://git-wip-us.apache.org/repos/asf/trafodion-site/blob/02a59eb3/docs/rest_reference/apidocs/org/trafodion/rest/util/ConfTool.html
--
diff --git a/docs/rest_reference/apidocs/org/trafodion/rest/util/ConfTool.html 
b/docs/rest_reference/apidocs/org/trafodion/rest/util/ConfTool.html
index 3bcab73..66850b9 100644
--- a/docs/rest_reference/apidocs/org/trafodion/rest/util/ConfTool.html
+++ b/docs/rest_reference/apidocs/org/trafodion/rest/util/ConfTool.html
@@ -2,10 +2,10 @@
 
 
 
-
+
 
 ConfTool (Trafodion REST 2.3.0 API)
-
+
 
 
 

http://git-wip-us.apache.org/repos/asf/trafodion-site/blob/02a59eb3/docs/rest_reference/apidocs/org/trafodion/rest/util/GetJavaProperty.html
--
diff --git 
a/docs/rest_reference/apidocs/org/trafodion/rest/util/GetJavaProperty.html 
b/docs/rest_reference/apidocs/org/trafodion/rest/util/GetJavaProperty.html
index 4fe820d..72a8182 100644
--- a/docs/rest_reference/apidocs/org/trafodion/rest/util/GetJavaProperty.html
+++ b/docs/rest_reference/apidocs/org/trafodion/rest/util/GetJavaProperty.html
@@ -2,10 +2,10 @@
 
 
 
-
+
 
 GetJavaProperty (Trafodion REST 2.3.0 API)
-
+
 
 
 

http://git-wip-us.apache.org/repos/asf/trafodion-site/blob/02a59eb3/docs/rest_reference/apidocs/org/trafodion/rest/util/JdbcT2Util.html
--
diff --git 
a/docs/rest_reference/apidocs/org/trafodion/rest/util/JdbcT2Util.html 
b/docs/rest_reference/apidocs/org/trafodion/rest/util/JdbcT2Util.html
index fcf4110..fbb531f 100644
--- a/docs/rest_reference/apidocs/org/trafodion/rest/util/JdbcT2Util.html
+++ b/docs/rest_reference/apidocs/org/trafodion/rest/util/JdbcT2Util.html
@@ -2,10 +2,10 @@
 
 
 
-
+
 
 JdbcT2Util (Trafodion REST 2.3.0 API)
-
+
 
 
 

http://git-wip-us.apache.org/repos/asf/trafodion-site/blob/02a59eb3/docs/rest_reference/apidocs/org/trafodion/rest/util/JdbcT4Util.html
--
diff --git 
a/docs/rest_reference/apidocs/org/trafodion/rest/util/JdbcT4Util.html 
b/docs/rest_reference/apidocs/org/trafodion/rest/util/JdbcT4Util.html
index d45b634..0f1a15e 100644
--- a/docs/rest_reference/apidocs/org/trafodion/rest/util/JdbcT4Util.html
+++ b/docs/rest_reference/apidocs/org/trafodion/rest/util/JdbcT4Util

[06/22] trafodion-site git commit: Merge PRs 1514 [TRAFODION-3022] and 1515 [TRAFODION-2960]

2018-04-17 Thread dbirdsall
http://git-wip-us.apache.org/repos/asf/trafodion-site/blob/02a59eb3/docs/dcs_reference/xref/org/trafodion/dcs/Constants.html
--
diff --git a/docs/dcs_reference/xref/org/trafodion/dcs/Constants.html 
b/docs/dcs_reference/xref/org/trafodion/dcs/Constants.html
index fd26d3c..7b7293b 100644
--- a/docs/dcs_reference/xref/org/trafodion/dcs/Constants.html
+++ b/docs/dcs_reference/xref/org/trafodion/dcs/Constants.html
@@ -102,7 +102,7 @@
 92  public static 
final String 
DCS_SERVER_USER_PROGRAM_COMMAND = "dcs.server.user.program.command";
 93  
 94  /** Default 
value for DCS server user program command */
-95  public static 
final String 
DEFAULT_DCS_SERVER_USER_PROGRAM_COMMAND = "cd 
${dcs.user.program.home};. ./sqenv.sh;mxosrvr -ZKHOST -RZ -ZKPNODE -CNGTO 
-ZKSTO -EADSCO -TCPADD -MAXHEAPPCT -STATISTICSINTERVAL -STATISTICSLIMIT 
-STATISTICSTYPE -STATISTICSENABLE -SQLPLAN -PORTMAPTOSECS 
-PORTBINDTOSECS";
+95  public static 
final String 
DEFAULT_DCS_SERVER_USER_PROGRAM_COMMAND = "cd 
${dcs.user.program.home};. ./sqenv.sh;mxosrvr -ZKHOST -RZ -ZKPNODE -CNGTO 
-ZKSTO -EADSCO -TCPADD -MAXHEAPPCT -STATISTICSINTERVAL -STATISTICSLIMIT 
-STATISTICSTYPE -STATISTICSENABLE -SQLPLAN -PORTMAPTOSECS -PORTBINDTOSECS 
-TCPKEEPALIVESTATUS -TCPKEEPALIVEIDLETIME -TCPKEEPALIVEINTERVAL 
-TCPKEEPALIVERETRYCOUNT";
 96  
 97  /** 
Configuration key for DCS server user program connecting timeout */
 98  public static 
final String 
DCS_SERVER_USER_PROGRAM_CONNECTING_TIMEOUT = "dcs.server.user.program.connecting.timeout";
@@ -122,469 +122,492 @@
 112 /** Default 
value for DCS server user program exit after disconnect */
 113 public static 
final int 
DEFAULT_DCS_SERVER_USER_PROGRAM_EXIT_AFTER_DISCONNECT = 0;
 114 
-115 /**
-116  * Configuration key for DCS server user program 
exit when heap size becomes
-117  * too large
-118  */
-119 public static 
final String 
DCS_SERVER_USER_PROGRAM_MAX_HEAP_PCT_EXIT = "dcs.server.user.program.max.heap.pct.exit";
+115 /** 
Configuration key for DCS server program mxosrvr keepalive STATUS*/
+116 public static 
final String  
DEFAULT_DCS_SERVER_PROGRAM_TCP_KEEPALIVE_STATUS= "dcs.server.user.program.tcp.keepalive.status";
+117 
+118 /** Default 
value for DCS server program mxosrvr keepalive STATUS*/
+119 public static 
final String 
DCS_SERVER_PROGRAM_KEEPALIVE_STATUS = "true";
 120 
-121 /**
-122  * Default value for DCS server user program 
exit when heap size becomes too
-123  * large
-124  */
-125 public static 
final int 
DEFAULT_DCS_SERVER_USER_PROGRAM_MAX_HEAP_PCT_EXIT = 0;
+121 /** 
Configuration key for DCS server program mxosrvr keepalive IDLETIME*/
+122 public static 
final String 
DEFAULT_DCS_SERVER_PROGRAM_TCP_KEEPALIVE_IDLETIME = "dcs.server.user.program.tcp.keepalive.idletime";
+123 
+124 /** Default 
value for DCS server program mxosrvr keepalive IDLETIME*/
+125 public static 
final int DCS_SERVER_PROGRAM_KEEPALIVE_IDLETIME = 300;
 126 
-127 /** 
Configuration key for DCS server user program statistics interval time */
-128 public static 
final String 
DCS_SERVER_USER_PROGRAM_STATISTICS_INTERVAL_TIME = "dcs.server.user.program.statistics.interval.time";
+127 /** 
Configuration key for DCS server program mxosrvr keepalive INTERTIME */
+128 public static 
final String 
DEFAULT_DCS_SERVER_PROGRAM_TCP_KEEPALIVE_INTERVALTIME = "dcs.server.user.program.tcp.keepalive.intervaltime";
 129 
-130 /** T2 Driver 
Property key for DCS server user program statistics interval time */
-131 public static 
final String 
PROPERTY_STATISTICS_INTERVAL_TIME = "statisticsIntervalTime";
+130 /** Default 
value for DCS server program mxosrvr keepalive INTERTIME */
+131 public static 
final int DCS_SERVER_PROGRAM_KEEPALIVE_INTERVALTIME = 5;
 132 
-133 /** Default 
value for DCS server user program statistics interval time */
-134 public static 
final int 
DEFAULT_DCS_SERVER_USER_PROGRAM_STATISTICS_INTERVAL_TIME = 60;
+133 /** 
Configuration key for DCS server program mxosrvr keepalive RETRYCNT*/
+134 public static 
final String 
DEFAULT_DCS_SERVER_PROGRAM_TCP_KEEPALIVE_RETRYCOUNT = "dcs.server.user.program.tcp.keepalive.retrycount";
 135 
-136 /** 
Configuration key for DCS server user program statistics limit time */
-137 public static 
final String 
DCS_SERVER_USER_PROGRAM_STATISTICS_LIMIT_TIME = "dcs.server.user.program.statistics.limit.time";
-138 
-139 /** T2 Driver 
Property key for DCS server user program statistics limit time */
-140 public static 
final String 
PROPERTY_STATISTICS_LIMIT_TIME = "statisticsLimitTime";
-141 
-142 /** Default 
value for DCS server user program statistics limit time */
-143 public static 
final int 
DEFAULT_DCS_SERVER_USER_PROGRAM_STATISTICS_LIMIT_TIME = 60;
-144 
-145 /** 
Configuration key for DCS server user program statistics 

[2/2] trafodion git commit: Merge [TRAFODION-3022] Add web site link to Apache Current Events

2018-04-17 Thread dbirdsall
Merge [TRAFODION-3022] Add web site link to Apache Current Events


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

Branch: refs/heads/master
Commit: aade2cffa41188f91653530f39b1532452e04e56
Parents: 84171fd 4005834
Author: Dave Birdsall 
Authored: Tue Apr 17 22:51:46 2018 +
Committer: Dave Birdsall 
Committed: Tue Apr 17 22:51:46 2018 +

--
 docs/src/site/site.xml | 8 
 1 file changed, 8 insertions(+)
--




[1/2] trafodion git commit: [TRAFODION-3022] Add web site link to Apache Current Events

2018-04-17 Thread dbirdsall
Repository: trafodion
Updated Branches:
  refs/heads/master 84171fdd0 -> aade2cffa


[TRAFODION-3022] Add web site link to Apache Current Events


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

Branch: refs/heads/master
Commit: 40058343ca89f66a1e7b6abcef1f5329db6231f6
Parents: d6e2933
Author: Steve Varnau 
Authored: Wed Apr 11 17:55:30 2018 +
Committer: Steve Varnau 
Committed: Wed Apr 11 17:55:30 2018 +

--
 docs/src/site/site.xml | 8 
 1 file changed, 8 insertions(+)
--


http://git-wip-us.apache.org/repos/asf/trafodion/blob/40058343/docs/src/site/site.xml
--
diff --git a/docs/src/site/site.xml b/docs/src/site/site.xml
index 7217a46..5ccff3c 100644
--- a/docs/src/site/site.xml
+++ b/docs/src/site/site.xml
@@ -40,6 +40,14 @@
 
 index.html
   
+  
+
+   
+
+https://www.apache.org/events/current-event.html
+  
 
   
 



[1/2] trafodion git commit: Correct a Mistake in PRUN Example

2018-04-17 Thread dbirdsall
Repository: trafodion
Updated Branches:
  refs/heads/master 1e100f413 -> 84171fdd0


Correct a Mistake in PRUN Example


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

Branch: refs/heads/master
Commit: 2b285de653a058bbed2da525eda390d0a4504986
Parents: d6e2933
Author: liu.yu 
Authored: Thu Apr 12 17:33:46 2018 +0800
Committer: liu.yu 
Committed: Thu Apr 12 17:33:46 2018 +0800

--
 docs/command_interface/src/asciidoc/_chapters/commands.adoc | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
--


http://git-wip-us.apache.org/repos/asf/trafodion/blob/2b285de6/docs/command_interface/src/asciidoc/_chapters/commands.adoc
--
diff --git a/docs/command_interface/src/asciidoc/_chapters/commands.adoc 
b/docs/command_interface/src/asciidoc/_chapters/commands.adoc
index 81a7e65..9a22b03 100644
--- a/docs/command_interface/src/asciidoc/_chapters/commands.adoc
+++ b/docs/command_interface/src/asciidoc/_chapters/commands.adoc
@@ -1702,7 +1702,7 @@ After executing all the script files, `PRUN` returns a 
summary of the operation:
  Total errors 4
  Total warnings.. 0
  Total successes 36
- Total connections... 5
+ Total connections... 3
  Total connection failures... 0
 
  Please verify the error log file c:\log\error\prun.err.log



[2/2] trafodion git commit: Merge [TRAFODION-2960] Correct PRUN example in Traf Command Interface Guide

2018-04-17 Thread dbirdsall
Merge [TRAFODION-2960] Correct PRUN example in Traf Command Interface Guide


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

Branch: refs/heads/master
Commit: 84171fdd08b4e3d4bb90fb97740d8f8603fd21d2
Parents: 1e100f4 2b285de
Author: Dave Birdsall 
Authored: Tue Apr 17 22:48:42 2018 +
Committer: Dave Birdsall 
Committed: Tue Apr 17 22:48:42 2018 +

--
 docs/command_interface/src/asciidoc/_chapters/commands.adoc | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
--




[trafodion] Git Push Summary

2018-04-17 Thread svarnau
Repository: trafodion
Updated Branches:
  refs/heads/default [deleted] b5fbfbf5f


[1/2] trafodion git commit: [TRAFODION-3023] Add more enum files to analyzeMessageGuide.py

2018-04-17 Thread dbirdsall
Repository: trafodion
Updated Branches:
  refs/heads/master c40ca2700 -> 1e100f413


[TRAFODION-3023] Add more enum files to analyzeMessageGuide.py


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

Branch: refs/heads/master
Commit: 3444e174ce80c4753b5505b63701a3a92f6e18f7
Parents: 51935dc
Author: Dave Birdsall 
Authored: Tue Apr 17 16:14:28 2018 +
Committer: Dave Birdsall 
Committed: Tue Apr 17 16:14:28 2018 +

--
 core/sqf/sql/scripts/analyzeMessageGuide.py |  4 ++-
 core/sql/sort/SortError.h   |  2 +-
 core/sql/udrserv/udrdefs.h  | 39 +++-
 3 files changed, 22 insertions(+), 23 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/trafodion/blob/3444e174/core/sqf/sql/scripts/analyzeMessageGuide.py
--
diff --git a/core/sqf/sql/scripts/analyzeMessageGuide.py 
b/core/sqf/sql/scripts/analyzeMessageGuide.py
index d903421..efc1f65 100644
--- a/core/sqf/sql/scripts/analyzeMessageGuide.py
+++ b/core/sqf/sql/scripts/analyzeMessageGuide.py
@@ -622,7 +622,9 @@ enumFileList = ( [ ['ustat/hs_const.h','USTAT_ERROR_CODES'],
 ['sqlcomp/CmpDDLCatErrorCodes.h','CatErrorCode'],
 ['optimizer/opt_error.h','OptimizerSQLErrorCode'],
 ['optimizer/UdrErrors.h','UDRErrors'],
-['exp/ExpErrorEnums.h','ExeErrorCode'] ] )
+['exp/ExpErrorEnums.h','ExeErrorCode'],
+['sort/SortError.h','SortErrorEnum'],
+['udrserv/udrdefs.h','UdrErrorEnum'] ] )
 for entry in enumFileList:
 fileName = mySQroot + '/../sql/' + entry[0]
 messagesTable.parseEnumFile(fileName,entry[1])

http://git-wip-us.apache.org/repos/asf/trafodion/blob/3444e174/core/sql/sort/SortError.h
--
diff --git a/core/sql/sort/SortError.h b/core/sql/sort/SortError.h
index b00eefb..ae809df 100644
--- a/core/sql/sort/SortError.h
+++ b/core/sql/sort/SortError.h
@@ -26,7 +26,7 @@
 #include "Platform.h"
 #include "NABasicObject.h"
 
-enum {
+enum SortErrorEnum {
EMissErrTxt  =10001 // internal error, missing error 
text
   ,EFromEOF =10002 // from file eof
   ,EScrEOF  =10003 // scratch file eof

http://git-wip-us.apache.org/repos/asf/trafodion/blob/3444e174/core/sql/udrserv/udrdefs.h
--
diff --git a/core/sql/udrserv/udrdefs.h b/core/sql/udrserv/udrdefs.h
index c264610..f3e253b 100644
--- a/core/sql/udrserv/udrdefs.h
+++ b/core/sql/udrserv/udrdefs.h
@@ -40,33 +40,30 @@
 
 #define MAXERRTEXT  255
 
-#define UDR_ERR_UNKNOWN_MSG_TYPE  11101  // udrserv
-#define UDR_ERR_MISSING_UDRHANDLE 11102  // udrunload, udrcontext, 
udrinvoke
-#define UDR_ERR_MISSING_LMROUTINE 11103  // udrunload, udrinvoke
-#define UDR_ERR_CLI_ERROR 11104  // udrcancel, udrcommit, 
udrload
+enum UdrErrorEnum {
+UDR_ERR_UNKNOWN_MSG_TYPE= 11101, // udrserv
+UDR_ERR_MISSING_UDRHANDLE   = 11102, // udrunload, udrcontext, 
udrinvoke
+UDR_ERR_MISSING_LMROUTINE   = 11103, // udrunload, udrinvoke
+UDR_ERR_CLI_ERROR   = 11104, // udrcancel, udrcommit, 
udrload
  // spinfo, udrinvoke
-#define UDR_ERR_INVALID_LM_PARAMMODE  11105  // udrinvoke
-#define UDR_ERR_UNABLE_TO_ALLOCATE_MEMORY 11108  // udrload
-#define UDR_ERR_TOO_MANY_OPENERS  11109  // udrserv
-#define UDR_ERR_MESSAGE_PROCESSING0  // udrcancel, udrcommint,
+UDR_ERR_INVALID_LM_PARAMMODE= 11105, // udrinvoke
+UDR_ERR_UNABLE_TO_ALLOCATE_MEMORY=11108, // udrload
+UDR_ERR_TOO_MANY_OPENERS= 11109, // udrserv
+UDR_ERR_MESSAGE_PROCESSING  = 0, // udrcancel, udrcommint,
  // udrimok, rsload, rsfetch
  // rscontinue, rsunload
-#define UDR_ERR_INTERNAL_ERROR1  // spinfo
-#define UDR_ERR_DUPLICATE_LOADS   2
-#define UDR_ERR_UNEXPECTED_UNLOAD 3
+UDR_ERR_INTERNAL_ERROR  = 1, // spinfo
+UDR_ERR_DUPLICATE_LOADS = 2,
+UDR_ERR_UNEXPECTED_UNLOAD   = 3,
 
 // RS related messages
-#define UDR_ERR_MISSING_RSHANDLE 4  // RS handle missing
-#define UDR_ERR_INTERNAL_CLI_ERROR   5  // RS Internal CLI error
-#define UDR_ERR_INVALID_RS_INDEX 6  // RS Invalid index in RS_LOAD
-#define UDR_ERR_INVALID_RS_STATE 7  // RS is i

[2/2] trafodion git commit: Merge [TRAFODION-3023] Add enum files to analyzeMessageGuide.py

2018-04-17 Thread dbirdsall
Merge [TRAFODION-3023] Add enum files to analyzeMessageGuide.py


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

Branch: refs/heads/master
Commit: 1e100f413d2d02069ce0b722f678c04441ce8b94
Parents: c40ca27 3444e17
Author: Dave Birdsall 
Authored: Tue Apr 17 17:17:36 2018 +
Committer: Dave Birdsall 
Committed: Tue Apr 17 17:17:36 2018 +

--
 core/sqf/sql/scripts/analyzeMessageGuide.py |  4 ++-
 core/sql/sort/SortError.h   |  2 +-
 core/sql/udrserv/udrdefs.h  | 39 +++-
 3 files changed, 22 insertions(+), 23 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/trafodion/blob/1e100f41/core/sqf/sql/scripts/analyzeMessageGuide.py
--



[trafodion] Git Push Summary

2018-04-17 Thread svarnau
Repository: trafodion
Updated Branches:
  refs/heads/HEAD [deleted] 51935dc0b


[1/2] trafodion git commit: [TRAFODION 3024] function lower() return null for varchar column when pcode is disabled

2018-04-17 Thread dbirdsall
Repository: trafodion
Updated Branches:
  refs/heads/master 6e39af244 -> c40ca2700


[TRAFODION 3024] function lower() return null for varchar column when pcode is 
disabled


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

Branch: refs/heads/master
Commit: d7f99b0735be3b794973c2bd2c079aa8606bcd3a
Parents: 9247656
Author: Andy Yang 
Authored: Mon Apr 16 15:28:22 2018 +0800
Committer: Andy Yang 
Committed: Mon Apr 16 15:28:22 2018 +0800

--
 core/sql/exp/exp_function.cpp | 1 +
 1 file changed, 1 insertion(+)
--


http://git-wip-us.apache.org/repos/asf/trafodion/blob/d7f99b07/core/sql/exp/exp_function.cpp
--
diff --git a/core/sql/exp/exp_function.cpp b/core/sql/exp/exp_function.cpp
index 9a1e332..787e952 100644
--- a/core/sql/exp/exp_function.cpp
+++ b/core/sql/exp/exp_function.cpp
@@ -1609,6 +1609,7 @@ ex_expr::exp_return_type ex_function_lower::eval(char 
*op_data[],
 {
   op_data[0][len0] = TOLOWER(op_data[1][len0]);
   ++len0;
+  ++total_bytes_out;
 }
   }
   else 



[2/2] trafodion git commit: Merge [TRAFODION-3024] Fix LOWER function for case where pCode is turned off

2018-04-17 Thread dbirdsall
Merge [TRAFODION-3024] Fix LOWER function for case where pCode is turned off


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

Branch: refs/heads/master
Commit: c40ca27001ed354577680e66f9023030bd20522b
Parents: 6e39af2 d7f99b0
Author: Dave Birdsall 
Authored: Tue Apr 17 16:00:31 2018 +
Committer: Dave Birdsall 
Committed: Tue Apr 17 16:00:31 2018 +

--
 core/sql/exp/exp_function.cpp | 1 +
 1 file changed, 1 insertion(+)
--