http://git-wip-us.apache.org/repos/asf/trafodion-site/blob/2d9ea87d/docs/2.3.0/sql_reference/dependencies.html
----------------------------------------------------------------------
diff --git a/docs/2.3.0/sql_reference/dependencies.html 
b/docs/2.3.0/sql_reference/dependencies.html
index 9a1fa81..00967e6 100644
--- a/docs/2.3.0/sql_reference/dependencies.html
+++ b/docs/2.3.0/sql_reference/dependencies.html
@@ -1,5 +1,5 @@
 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" 
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd";>
-<!-- Generated by Apache Maven Doxia Site Renderer 1.4 at 2018-06-04 -->
+<!-- Generated by Apache Maven Doxia Site Renderer 1.4 at 2018-06-07 -->
 <html xmlns="http://www.w3.org/1999/xhtml"; xml:lang="en" lang="en">
   <head>
     <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
@@ -10,7 +10,7 @@
       @import url("./css/site.css");
     </style>
     <link rel="stylesheet" href="./css/print.css" type="text/css" 
media="print" />
-    <meta name="Date-Revision-yyyymmdd" content="20180604" />
+    <meta name="Date-Revision-yyyymmdd" content="20180607" />
     <meta http-equiv="Content-Language" content="en" />
         
         </head>
@@ -27,7 +27,7 @@
             
                     
                 <div class="xleft">
-        <span id="publishDate">Last Published: 2018-06-04</span>
+        <span id="publishDate">Last Published: 2018-06-07</span>
                   &nbsp;| <span id="projectVersion">Version: 2.3.0</span>
                       </div>
             <div class="xright">                    <a href="./" 
title="Trafodion SQL Reference Manual">Trafodion SQL Reference Manual</a>

http://git-wip-us.apache.org/repos/asf/trafodion-site/blob/2d9ea87d/docs/2.3.0/sql_reference/index.html
----------------------------------------------------------------------
diff --git a/docs/2.3.0/sql_reference/index.html 
b/docs/2.3.0/sql_reference/index.html
index 39fa585..1c6fff2 100644
--- a/docs/2.3.0/sql_reference/index.html
+++ b/docs/2.3.0/sql_reference/index.html
@@ -874,8 +874,7 @@ table.CodeRay td.code>pre{padding:0}
 <ul class="sectlevel3">
 <li><a href="#merge_syntax">3.40.1. Syntax Description of MERGE</a></li>
 <li><a href="#merge_considerations">3.40.2. Considerations for MERGE</a></li>
-<li><a href="#merge_upsert_using_single_row">3.40.3. Upsert Using Single 
Row</a></li>
-<li><a href="#merge_examples">3.40.4. Examples of MERGE</a></li>
+<li><a href="#merge_examples">3.40.3. Examples of MERGE</a></li>
 </ul>
 </li>
 <li><a href="#prepare_statement">3.41. PREPARE Statement</a>
@@ -5648,18 +5647,33 @@ EXECUTE y;                              -- uses 
MYSCHEMA;</code></pre>
 <div class="ulist">
 <ul>
 <li>
-<p>Increase the cache refresh time for the histogram cache to two hours (7,200 
minutes).</p>
+<p>This example changes the maximum degree of parallelism to 2 for a query. 
The value must be less than the number of CPUs in the cluster.</p>
 <div class="listingblock">
 <div class="content">
-<pre class="CodeRay highlight"><code data-lang="text">CONTROL QUERY DEFAULT 
CACHE_HISTOGRAMS_REFRESH_INTERVAL '7200';</code></pre>
+<pre class="CodeRay highlight"><code data-lang="text">SQL&gt;CONTROL QUERY 
DEFAULT PARALLEL_NUM_ESPS '2';
+
+--- SQL operation complete.</code></pre>
+</div>
+</div>
+<div class="paragraph">
+<p>This example resets the <code>PARALLEL_NUM_ESPS</code> attribute to its 
system value in the current process.
+In this case, the compiler calculates the number of ESPs to be used.</p>
+</div>
+<div class="listingblock">
+<div class="content">
+<pre class="CodeRay highlight"><code data-lang="text">SQL&gt;CONTROL QUERY 
DEFAULT PARALLEL_NUM_ESPS 'system';
+
+--- SQL operation complete.</code></pre>
 </div>
 </div>
 </li>
 <li>
-<p>Reset the CACHE_HISTOGRAMS_REFRESH_INTERVAL attribute to its initial value 
in the current process:</p>
+<p>This example allows the optimizer to generate an execution using hash 
join.</p>
 <div class="listingblock">
 <div class="content">
-<pre class="CodeRay highlight"><code data-lang="text">CONTROL QUERY DEFAULT 
CACHE_HISTOGRAMS_REFRESH_INTERVAL RESET;</code></pre>
+<pre class="CodeRay highlight"><code data-lang="text">SQL&gt;CONTROL QUERY 
DEFAULT HASH_JOIN 'ON';
+
+--- SQL operation complete.</code></pre>
 </div>
 </div>
 </li>
@@ -5697,10 +5711,10 @@ this statement, AUTOCOMMIT must be turned ON (the 
default) for the session.
        (return-parameter-declaration[, return-parameter-declaration]...)
     EXTERNAL NAME 'character-string-literal'
     LIBRARY [[catalog-name.]schema-name.]library-name
-    [language c]
+    [LANGUAGE c]
     [parameter style sql]
     [no sql]
-    [not deterministic | deterministic]
+    [NOT DETERMINISTIC | DETERMINISTIC]
     [final call | no final call]
     [no state area | state area size]
     [no parallelism | allow any parallelism]
@@ -5844,7 +5858,7 @@ library name, trafodion sql qualifies it according to the 
schema of the current
 </div>
 </li>
 <li>
-<p><code>language c</code></p>
+<p><code>LANGUAGE c</code></p>
 <div class="paragraph">
 <p>specifies that the external function is written in the c language. this 
clause is optional.</p>
 </div>
@@ -5863,7 +5877,7 @@ language. this clause is optional.</p>
 </div>
 </li>
 <li>
-<p><code>deterministic | not deterministic</code></p>
+<p><code>DETERMINISTIC | NOT DETERMINISTIC</code></p>
 <div class="paragraph">
 <p>specifies whether the function always returns the same values for out 
parameters for a given set of argument
 values (deterministic, the default behavior) or does not return the same 
values (not deterministic). if the
@@ -6323,6 +6337,12 @@ partitions are not audited and empty.
 <p>If the operation fails after basic semantic checks are performed, the index 
no longer exists and the entire transaction
 is rolled back even if it is a user-started transaction.</p>
 </div>
+<div class="paragraph">
+<p>If you are creating an index on a large Trafodion table that is already 
populated,
+you should use the NO POPULATE option, and then run the POPULATE INDEX utility 
to load the index.
+Because CREATE INDEX executes in a single transaction, it could experience 
transactional limitations such as a transaction timeout
+if a large amount of data is to be moved.</p>
+</div>
 <div class="sect4">
 <h5 
id="create_index_authorization_and_availability_requirements">Authorization and 
Availability Requirements</h5>
 <div class="paragraph">
@@ -6678,13 +6698,13 @@ AUTOCOMMIT must be turned ON (the default) for the 
session.
    EXTERNAL NAME 'java-method-name [java-signature]'
    LIBRARY [[catalog-name.]schema-name.]library-name
    [external security external-security-type]
-   language java
+   LANGUAGE java
    parameter style java
    [no sql | contains sql | modifies sql data | reads sql data]
    [dynamic result sets integer]
-   [transaction required | no transaction required]
-   [deterministic | not deterministic]
-   [no isolate | isolate]
+   [TRANSACTION REQUIRED | NO TRANSACTION REQUIRED]
+   [DETERMINISTIC | NOT DETERMINISTIC]
+   [NO ISOLATE| ISOLATE]
 
 procedure-ref is:
    [[catalog-name.]schema-name.]procedure-name
@@ -7015,7 +7035,7 @@ because those users will be able to execute the SPJ 
without requiring privileges
 <div class="ulist">
 <ul>
 <li>
-<p><code>language java</code></p>
+<p><code>LANGUAGE java</code></p>
 <div class="paragraph">
 <p>specifies that the external user-defined routine is written in the java 
language.</p>
 </div>
@@ -7050,13 +7070,13 @@ this option, then the default value is 0 (zero), 
meaning that the SPJ does not r
 </div>
 </li>
 <li>
-<p><code>transaction required | no transaction required</code></p>
+<p><code>TRANSACTION REQUIRED | NO TRANSACTION REQUIRED</code></p>
 <div class="paragraph">
-<p>determines whether the SPJ must run in a transaction inherited from the 
calling application (<code>transaction required</code>, the default
-option) or whether the SPJ runs without inheriting the calling application’s 
transaction (<code>no transaction required</code>). Typically,
+<p>determines whether the SPJ must run in a transaction inherited from the 
calling application (<code>TRANSACTION REQUIRED</code>, the default
+option) or whether the SPJ runs without inheriting the calling application’s 
transaction (<code>NO TRANSACTION REQUIRED</code>). Typically,
 you want the stored procedure to inherit the transaction from the calling 
application. However, if the SPJ method does
 not access the database or if you want the stored procedure to manage its own 
transactions, then you should set the stored
-procedure’s transaction attribute to no transaction required. For more 
information, see
+procedure’s transaction attribute to <code>NO TRANSACTION REQUIRED</code>. 
For more information, see
 <a href="#effects_of_the_transaction_attribute_on_spjs">effects of the 
transaction attribute on SPJs</a>.</p>
 </div>
 </li>
@@ -7066,19 +7086,19 @@ procedure’s transaction attribute to no transaction 
required. For more informa
 <div class="ulist">
 <ul>
 <li>
-<p><code>deterministic | not deterministic</code></p>
+<p><code>DETERMINISTIC | NOT DETERMINISTIC</code></p>
 <div class="paragraph">
 <p>specifies whether the SPJ always returns the same values for out and inout 
parameters for a given set of argument values
-(<code>deterministic</code>) or does not return the same values (<code>not 
deterministic</code>, the default option). If you specify 
<code>deterministic</code>,
+(<code>DETERMINISTIC</code>) or does not return the same values (<code>NOT 
DETERMINISTIC</code>, the default option). If you specify 
<code>DETERMINISTIC</code>,
 Trafodion is not required to call the SPJ each time to produce results; 
instead, Trafodion caches the results and
 reuses them during subsequent calls, thus optimizing the CALL statement.</p>
 </div>
 </li>
 <li>
-<p><code>no isolate | isolate</code></p>
+<p><code>NO ISOLATE | ISOLATE</code></p>
 <div class="paragraph">
-<p>specifies that the SPJ executes either in the environment of the database 
server (<code>no isolate</code>) or in an isolated environment
-(<code>isolate</code>, the default option). Trafodion allows both options but 
always executes the SPJ in the UDR server process (<code>isolate</code>).</p>
+<p>specifies that the SPJ executes either in the environment of the database 
server (<code>NO ISOLATE</code>) or in an isolated environment
+(<code>ISOLATE</code>, the default option). Trafodion allows both options but 
always executes the SPJ in the UDR server process (<code>ISOLATE</code>).</p>
 </div>
 </li>
 </ul>
@@ -7623,7 +7643,7 @@ By default, this privilege is granted to PUBLIC, but it 
can be revoked by DB ROO
 <div class="ulist">
 <ul>
 <li>
-<p>This example creates a private schema schema named MYSCHEMA, which will be 
owned by the current user:</p>
+<p>This example creates a private schema named MYSCHEMA, which will be owned 
by the current user:</p>
 <div class="listingblock">
 <div class="content">
 <pre class="CodeRay highlight"><code data-lang="text">CREATE SCHEMA 
myschema;</code></pre>
@@ -13651,10 +13671,8 @@ key of the table if the MERGE has a 
<em>when-not-matched-clause</em>. The cluste
 </div>
 <div class="sect3">
 <h4 id="merge_considerations">3.40.2. Considerations for MERGE</h4>
-
-</div>
-<div class="sect3">
-<h4 id="merge_upsert_using_single_row">3.40.3. Upsert Using Single Row</h4>
+<div class="sect4">
+<h5 id="merge_upsert_using_single_row">Upsert Using Single Row</h5>
 <div class="paragraph">
 <p>A MERGE statement allows you to specify a set of column values that should 
be updated if the row is found, and another
 row to be inserted if the row is not found. The ON predicate must select 
exactly one row that is to be updated if the
@@ -13710,6 +13728,7 @@ found in table t.</p>
   WHEN NOT MATCHED THEN INSERT VALUES (10, 30)</code></pre>
 </div>
 </div>
+</div>
 <div class="sect4">
 <h5 id="merge_conditional_upsert_using_single_row">Conditional Upsert Using 
Single Row</h5>
 <div class="paragraph">
@@ -13853,7 +13872,7 @@ is not found, the insert is done. The restrictions are 
the same as those for &lt
 </div>
 </div>
 <div class="sect3">
-<h4 id="merge_examples">3.40.4. Examples of MERGE</h4>
+<h4 id="merge_examples">3.40.3. Examples of MERGE</h4>
 <div class="ulist">
 <ul>
 <li>

http://git-wip-us.apache.org/repos/asf/trafodion-site/blob/2d9ea87d/docs/2.3.0/sql_reference/integration.html
----------------------------------------------------------------------
diff --git a/docs/2.3.0/sql_reference/integration.html 
b/docs/2.3.0/sql_reference/integration.html
index 01bd52e..2f5ff24 100644
--- a/docs/2.3.0/sql_reference/integration.html
+++ b/docs/2.3.0/sql_reference/integration.html
@@ -1,5 +1,5 @@
 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" 
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd";>
-<!-- Generated by Apache Maven Doxia Site Renderer 1.4 at 2018-06-04 -->
+<!-- Generated by Apache Maven Doxia Site Renderer 1.4 at 2018-06-07 -->
 <html xmlns="http://www.w3.org/1999/xhtml"; xml:lang="en" lang="en">
   <head>
     <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
@@ -10,7 +10,7 @@
       @import url("./css/site.css");
     </style>
     <link rel="stylesheet" href="./css/print.css" type="text/css" 
media="print" />
-    <meta name="Date-Revision-yyyymmdd" content="20180604" />
+    <meta name="Date-Revision-yyyymmdd" content="20180607" />
     <meta http-equiv="Content-Language" content="en" />
         
         </head>
@@ -27,7 +27,7 @@
             
                     
                 <div class="xleft">
-        <span id="publishDate">Last Published: 2018-06-04</span>
+        <span id="publishDate">Last Published: 2018-06-07</span>
                   &nbsp;| <span id="projectVersion">Version: 2.3.0</span>
                       </div>
             <div class="xright">                    <a href="./" 
title="Trafodion SQL Reference Manual">Trafodion SQL Reference Manual</a>

http://git-wip-us.apache.org/repos/asf/trafodion-site/blob/2d9ea87d/docs/2.3.0/sql_reference/issue-tracking.html
----------------------------------------------------------------------
diff --git a/docs/2.3.0/sql_reference/issue-tracking.html 
b/docs/2.3.0/sql_reference/issue-tracking.html
index bb22bf6..d3bdbc7 100644
--- a/docs/2.3.0/sql_reference/issue-tracking.html
+++ b/docs/2.3.0/sql_reference/issue-tracking.html
@@ -1,5 +1,5 @@
 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" 
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd";>
-<!-- Generated by Apache Maven Doxia Site Renderer 1.4 at 2018-06-04 -->
+<!-- Generated by Apache Maven Doxia Site Renderer 1.4 at 2018-06-07 -->
 <html xmlns="http://www.w3.org/1999/xhtml"; xml:lang="en" lang="en">
   <head>
     <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
@@ -10,7 +10,7 @@
       @import url("./css/site.css");
     </style>
     <link rel="stylesheet" href="./css/print.css" type="text/css" 
media="print" />
-    <meta name="Date-Revision-yyyymmdd" content="20180604" />
+    <meta name="Date-Revision-yyyymmdd" content="20180607" />
     <meta http-equiv="Content-Language" content="en" />
         
         </head>
@@ -27,7 +27,7 @@
             
                     
                 <div class="xleft">
-        <span id="publishDate">Last Published: 2018-06-04</span>
+        <span id="publishDate">Last Published: 2018-06-07</span>
                   &nbsp;| <span id="projectVersion">Version: 2.3.0</span>
                       </div>
             <div class="xright">                    <a href="./" 
title="Trafodion SQL Reference Manual">Trafodion SQL Reference Manual</a>

http://git-wip-us.apache.org/repos/asf/trafodion-site/blob/2d9ea87d/docs/2.3.0/sql_reference/license.html
----------------------------------------------------------------------
diff --git a/docs/2.3.0/sql_reference/license.html 
b/docs/2.3.0/sql_reference/license.html
index a0601d8..046fb87 100644
--- a/docs/2.3.0/sql_reference/license.html
+++ b/docs/2.3.0/sql_reference/license.html
@@ -1,5 +1,5 @@
 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" 
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd";>
-<!-- Generated by Apache Maven Doxia Site Renderer 1.4 at 2018-06-04 -->
+<!-- Generated by Apache Maven Doxia Site Renderer 1.4 at 2018-06-07 -->
 <html xmlns="http://www.w3.org/1999/xhtml"; xml:lang="en" lang="en">
   <head>
     <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
@@ -10,7 +10,7 @@
       @import url("./css/site.css");
     </style>
     <link rel="stylesheet" href="./css/print.css" type="text/css" 
media="print" />
-    <meta name="Date-Revision-yyyymmdd" content="20180604" />
+    <meta name="Date-Revision-yyyymmdd" content="20180607" />
     <meta http-equiv="Content-Language" content="en" />
         
         </head>
@@ -27,7 +27,7 @@
             
                     
                 <div class="xleft">
-        <span id="publishDate">Last Published: 2018-06-04</span>
+        <span id="publishDate">Last Published: 2018-06-07</span>
                   &nbsp;| <span id="projectVersion">Version: 2.3.0</span>
                       </div>
             <div class="xright">                    <a href="./" 
title="Trafodion SQL Reference Manual">Trafodion SQL Reference Manual</a>

http://git-wip-us.apache.org/repos/asf/trafodion-site/blob/2d9ea87d/docs/2.3.0/sql_reference/mail-lists.html
----------------------------------------------------------------------
diff --git a/docs/2.3.0/sql_reference/mail-lists.html 
b/docs/2.3.0/sql_reference/mail-lists.html
index 1941619..e75ccce 100644
--- a/docs/2.3.0/sql_reference/mail-lists.html
+++ b/docs/2.3.0/sql_reference/mail-lists.html
@@ -1,5 +1,5 @@
 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" 
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd";>
-<!-- Generated by Apache Maven Doxia Site Renderer 1.4 at 2018-06-04 -->
+<!-- Generated by Apache Maven Doxia Site Renderer 1.4 at 2018-06-07 -->
 <html xmlns="http://www.w3.org/1999/xhtml"; xml:lang="en" lang="en">
   <head>
     <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
@@ -10,7 +10,7 @@
       @import url("./css/site.css");
     </style>
     <link rel="stylesheet" href="./css/print.css" type="text/css" 
media="print" />
-    <meta name="Date-Revision-yyyymmdd" content="20180604" />
+    <meta name="Date-Revision-yyyymmdd" content="20180607" />
     <meta http-equiv="Content-Language" content="en" />
         
         </head>
@@ -27,7 +27,7 @@
             
                     
                 <div class="xleft">
-        <span id="publishDate">Last Published: 2018-06-04</span>
+        <span id="publishDate">Last Published: 2018-06-07</span>
                   &nbsp;| <span id="projectVersion">Version: 2.3.0</span>
                       </div>
             <div class="xright">                    <a href="./" 
title="Trafodion SQL Reference Manual">Trafodion SQL Reference Manual</a>

http://git-wip-us.apache.org/repos/asf/trafodion-site/blob/2d9ea87d/docs/2.3.0/sql_reference/project-info.html
----------------------------------------------------------------------
diff --git a/docs/2.3.0/sql_reference/project-info.html 
b/docs/2.3.0/sql_reference/project-info.html
index 2bcfd5e..fc05d7c 100644
--- a/docs/2.3.0/sql_reference/project-info.html
+++ b/docs/2.3.0/sql_reference/project-info.html
@@ -1,5 +1,5 @@
 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" 
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd";>
-<!-- Generated by Apache Maven Doxia Site Renderer 1.4 at 2018-06-04 -->
+<!-- Generated by Apache Maven Doxia Site Renderer 1.4 at 2018-06-07 -->
 <html xmlns="http://www.w3.org/1999/xhtml"; xml:lang="en" lang="en">
   <head>
     <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
@@ -10,7 +10,7 @@
       @import url("./css/site.css");
     </style>
     <link rel="stylesheet" href="./css/print.css" type="text/css" 
media="print" />
-    <meta name="Date-Revision-yyyymmdd" content="20180604" />
+    <meta name="Date-Revision-yyyymmdd" content="20180607" />
     <meta http-equiv="Content-Language" content="en" />
         
         </head>
@@ -27,7 +27,7 @@
             
                     
                 <div class="xleft">
-        <span id="publishDate">Last Published: 2018-06-04</span>
+        <span id="publishDate">Last Published: 2018-06-07</span>
                   &nbsp;| <span id="projectVersion">Version: 2.3.0</span>
                       </div>
             <div class="xright">                    <a href="./" 
title="Trafodion SQL Reference Manual">Trafodion SQL Reference Manual</a>

http://git-wip-us.apache.org/repos/asf/trafodion-site/blob/2d9ea87d/docs/2.3.0/sql_reference/project-summary.html
----------------------------------------------------------------------
diff --git a/docs/2.3.0/sql_reference/project-summary.html 
b/docs/2.3.0/sql_reference/project-summary.html
index 8cabbc3..3887d9a 100644
--- a/docs/2.3.0/sql_reference/project-summary.html
+++ b/docs/2.3.0/sql_reference/project-summary.html
@@ -1,5 +1,5 @@
 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" 
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd";>
-<!-- Generated by Apache Maven Doxia Site Renderer 1.4 at 2018-06-04 -->
+<!-- Generated by Apache Maven Doxia Site Renderer 1.4 at 2018-06-07 -->
 <html xmlns="http://www.w3.org/1999/xhtml"; xml:lang="en" lang="en">
   <head>
     <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
@@ -10,7 +10,7 @@
       @import url("./css/site.css");
     </style>
     <link rel="stylesheet" href="./css/print.css" type="text/css" 
media="print" />
-    <meta name="Date-Revision-yyyymmdd" content="20180604" />
+    <meta name="Date-Revision-yyyymmdd" content="20180607" />
     <meta http-equiv="Content-Language" content="en" />
         
         </head>
@@ -27,7 +27,7 @@
             
                     
                 <div class="xleft">
-        <span id="publishDate">Last Published: 2018-06-04</span>
+        <span id="publishDate">Last Published: 2018-06-07</span>
                   &nbsp;| <span id="projectVersion">Version: 2.3.0</span>
                       </div>
             <div class="xright">                    <a href="./" 
title="Trafodion SQL Reference Manual">Trafodion SQL Reference Manual</a>

http://git-wip-us.apache.org/repos/asf/trafodion-site/blob/2d9ea87d/docs/2.3.0/sql_reference/source-repository.html
----------------------------------------------------------------------
diff --git a/docs/2.3.0/sql_reference/source-repository.html 
b/docs/2.3.0/sql_reference/source-repository.html
index dd36346..0919c48 100644
--- a/docs/2.3.0/sql_reference/source-repository.html
+++ b/docs/2.3.0/sql_reference/source-repository.html
@@ -1,5 +1,5 @@
 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" 
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd";>
-<!-- Generated by Apache Maven Doxia Site Renderer 1.4 at 2018-06-04 -->
+<!-- Generated by Apache Maven Doxia Site Renderer 1.4 at 2018-06-07 -->
 <html xmlns="http://www.w3.org/1999/xhtml"; xml:lang="en" lang="en">
   <head>
     <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
@@ -10,7 +10,7 @@
       @import url("./css/site.css");
     </style>
     <link rel="stylesheet" href="./css/print.css" type="text/css" 
media="print" />
-    <meta name="Date-Revision-yyyymmdd" content="20180604" />
+    <meta name="Date-Revision-yyyymmdd" content="20180607" />
     <meta http-equiv="Content-Language" content="en" />
         
         </head>
@@ -27,7 +27,7 @@
             
                     
                 <div class="xleft">
-        <span id="publishDate">Last Published: 2018-06-04</span>
+        <span id="publishDate">Last Published: 2018-06-07</span>
                   &nbsp;| <span id="projectVersion">Version: 2.3.0</span>
                       </div>
             <div class="xright">                    <a href="./" 
title="Trafodion SQL Reference Manual">Trafodion SQL Reference Manual</a>

http://git-wip-us.apache.org/repos/asf/trafodion-site/blob/2d9ea87d/docs/2.3.0/sql_reference/team-list.html
----------------------------------------------------------------------
diff --git a/docs/2.3.0/sql_reference/team-list.html 
b/docs/2.3.0/sql_reference/team-list.html
index 0262c33..5ccaf8a 100644
--- a/docs/2.3.0/sql_reference/team-list.html
+++ b/docs/2.3.0/sql_reference/team-list.html
@@ -1,5 +1,5 @@
 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" 
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd";>
-<!-- Generated by Apache Maven Doxia Site Renderer 1.4 at 2018-06-04 -->
+<!-- Generated by Apache Maven Doxia Site Renderer 1.4 at 2018-06-07 -->
 <html xmlns="http://www.w3.org/1999/xhtml"; xml:lang="en" lang="en">
   <head>
     <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
@@ -10,7 +10,7 @@
       @import url("./css/site.css");
     </style>
     <link rel="stylesheet" href="./css/print.css" type="text/css" 
media="print" />
-    <meta name="Date-Revision-yyyymmdd" content="20180604" />
+    <meta name="Date-Revision-yyyymmdd" content="20180607" />
     <meta http-equiv="Content-Language" content="en" />
         
         </head>
@@ -27,7 +27,7 @@
             
                     
                 <div class="xleft">
-        <span id="publishDate">Last Published: 2018-06-04</span>
+        <span id="publishDate">Last Published: 2018-06-07</span>
                   &nbsp;| <span id="projectVersion">Version: 2.3.0</span>
                       </div>
             <div class="xright">                    <a href="./" 
title="Trafodion SQL Reference Manual">Trafodion SQL Reference Manual</a>

http://git-wip-us.apache.org/repos/asf/trafodion-site/blob/2d9ea87d/docs/client_install/Trafodion_Client_Installation_Guide.pdf
----------------------------------------------------------------------
diff --git a/docs/client_install/Trafodion_Client_Installation_Guide.pdf 
b/docs/client_install/Trafodion_Client_Installation_Guide.pdf
index 878cc98..c8bd071 100644
Binary files a/docs/client_install/Trafodion_Client_Installation_Guide.pdf and 
b/docs/client_install/Trafodion_Client_Installation_Guide.pdf differ

http://git-wip-us.apache.org/repos/asf/trafodion-site/blob/2d9ea87d/docs/client_install/dependencies.html
----------------------------------------------------------------------
diff --git a/docs/client_install/dependencies.html 
b/docs/client_install/dependencies.html
index 86d64d9..ad6b455 100644
--- a/docs/client_install/dependencies.html
+++ b/docs/client_install/dependencies.html
@@ -1,5 +1,5 @@
 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" 
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd";>
-<!-- Generated by Apache Maven Doxia Site Renderer 1.4 at 2018-06-04 -->
+<!-- Generated by Apache Maven Doxia Site Renderer 1.4 at 2018-06-07 -->
 <html xmlns="http://www.w3.org/1999/xhtml"; xml:lang="en" lang="en">
   <head>
     <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
@@ -10,7 +10,7 @@
       @import url("./css/site.css");
     </style>
     <link rel="stylesheet" href="./css/print.css" type="text/css" 
media="print" />
-    <meta name="Date-Revision-yyyymmdd" content="20180604" />
+    <meta name="Date-Revision-yyyymmdd" content="20180607" />
     <meta http-equiv="Content-Language" content="en" />
         
         </head>
@@ -27,7 +27,7 @@
             
                     
                 <div class="xleft">
-        <span id="publishDate">Last Published: 2018-06-04</span>
+        <span id="publishDate">Last Published: 2018-06-07</span>
                   &nbsp;| <span id="projectVersion">Version: 2.3.0</span>
                       </div>
             <div class="xright">                    <a href="./" 
title="Trafodion Client Installation Guide">Trafodion Client Installation 
Guide</a>

http://git-wip-us.apache.org/repos/asf/trafodion-site/blob/2d9ea87d/docs/client_install/integration.html
----------------------------------------------------------------------
diff --git a/docs/client_install/integration.html 
b/docs/client_install/integration.html
index 28f4217..7b5c4a5 100644
--- a/docs/client_install/integration.html
+++ b/docs/client_install/integration.html
@@ -1,5 +1,5 @@
 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" 
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd";>
-<!-- Generated by Apache Maven Doxia Site Renderer 1.4 at 2018-06-04 -->
+<!-- Generated by Apache Maven Doxia Site Renderer 1.4 at 2018-06-07 -->
 <html xmlns="http://www.w3.org/1999/xhtml"; xml:lang="en" lang="en">
   <head>
     <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
@@ -10,7 +10,7 @@
       @import url("./css/site.css");
     </style>
     <link rel="stylesheet" href="./css/print.css" type="text/css" 
media="print" />
-    <meta name="Date-Revision-yyyymmdd" content="20180604" />
+    <meta name="Date-Revision-yyyymmdd" content="20180607" />
     <meta http-equiv="Content-Language" content="en" />
         
         </head>
@@ -27,7 +27,7 @@
             
                     
                 <div class="xleft">
-        <span id="publishDate">Last Published: 2018-06-04</span>
+        <span id="publishDate">Last Published: 2018-06-07</span>
                   &nbsp;| <span id="projectVersion">Version: 2.3.0</span>
                       </div>
             <div class="xright">                    <a href="./" 
title="Trafodion Client Installation Guide">Trafodion Client Installation 
Guide</a>

http://git-wip-us.apache.org/repos/asf/trafodion-site/blob/2d9ea87d/docs/client_install/issue-tracking.html
----------------------------------------------------------------------
diff --git a/docs/client_install/issue-tracking.html 
b/docs/client_install/issue-tracking.html
index f080b37..f0d4559 100644
--- a/docs/client_install/issue-tracking.html
+++ b/docs/client_install/issue-tracking.html
@@ -1,5 +1,5 @@
 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" 
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd";>
-<!-- Generated by Apache Maven Doxia Site Renderer 1.4 at 2018-06-04 -->
+<!-- Generated by Apache Maven Doxia Site Renderer 1.4 at 2018-06-07 -->
 <html xmlns="http://www.w3.org/1999/xhtml"; xml:lang="en" lang="en">
   <head>
     <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
@@ -10,7 +10,7 @@
       @import url("./css/site.css");
     </style>
     <link rel="stylesheet" href="./css/print.css" type="text/css" 
media="print" />
-    <meta name="Date-Revision-yyyymmdd" content="20180604" />
+    <meta name="Date-Revision-yyyymmdd" content="20180607" />
     <meta http-equiv="Content-Language" content="en" />
         
         </head>
@@ -27,7 +27,7 @@
             
                     
                 <div class="xleft">
-        <span id="publishDate">Last Published: 2018-06-04</span>
+        <span id="publishDate">Last Published: 2018-06-07</span>
                   &nbsp;| <span id="projectVersion">Version: 2.3.0</span>
                       </div>
             <div class="xright">                    <a href="./" 
title="Trafodion Client Installation Guide">Trafodion Client Installation 
Guide</a>

http://git-wip-us.apache.org/repos/asf/trafodion-site/blob/2d9ea87d/docs/client_install/license.html
----------------------------------------------------------------------
diff --git a/docs/client_install/license.html b/docs/client_install/license.html
index 6a39d8b..abbcac2 100644
--- a/docs/client_install/license.html
+++ b/docs/client_install/license.html
@@ -1,5 +1,5 @@
 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" 
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd";>
-<!-- Generated by Apache Maven Doxia Site Renderer 1.4 at 2018-06-04 -->
+<!-- Generated by Apache Maven Doxia Site Renderer 1.4 at 2018-06-07 -->
 <html xmlns="http://www.w3.org/1999/xhtml"; xml:lang="en" lang="en">
   <head>
     <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
@@ -10,7 +10,7 @@
       @import url("./css/site.css");
     </style>
     <link rel="stylesheet" href="./css/print.css" type="text/css" 
media="print" />
-    <meta name="Date-Revision-yyyymmdd" content="20180604" />
+    <meta name="Date-Revision-yyyymmdd" content="20180607" />
     <meta http-equiv="Content-Language" content="en" />
         
         </head>
@@ -27,7 +27,7 @@
             
                     
                 <div class="xleft">
-        <span id="publishDate">Last Published: 2018-06-04</span>
+        <span id="publishDate">Last Published: 2018-06-07</span>
                   &nbsp;| <span id="projectVersion">Version: 2.3.0</span>
                       </div>
             <div class="xright">                    <a href="./" 
title="Trafodion Client Installation Guide">Trafodion Client Installation 
Guide</a>

http://git-wip-us.apache.org/repos/asf/trafodion-site/blob/2d9ea87d/docs/client_install/mail-lists.html
----------------------------------------------------------------------
diff --git a/docs/client_install/mail-lists.html 
b/docs/client_install/mail-lists.html
index 882e44c..9294767 100644
--- a/docs/client_install/mail-lists.html
+++ b/docs/client_install/mail-lists.html
@@ -1,5 +1,5 @@
 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" 
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd";>
-<!-- Generated by Apache Maven Doxia Site Renderer 1.4 at 2018-06-04 -->
+<!-- Generated by Apache Maven Doxia Site Renderer 1.4 at 2018-06-07 -->
 <html xmlns="http://www.w3.org/1999/xhtml"; xml:lang="en" lang="en">
   <head>
     <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
@@ -10,7 +10,7 @@
       @import url("./css/site.css");
     </style>
     <link rel="stylesheet" href="./css/print.css" type="text/css" 
media="print" />
-    <meta name="Date-Revision-yyyymmdd" content="20180604" />
+    <meta name="Date-Revision-yyyymmdd" content="20180607" />
     <meta http-equiv="Content-Language" content="en" />
         
         </head>
@@ -27,7 +27,7 @@
             
                     
                 <div class="xleft">
-        <span id="publishDate">Last Published: 2018-06-04</span>
+        <span id="publishDate">Last Published: 2018-06-07</span>
                   &nbsp;| <span id="projectVersion">Version: 2.3.0</span>
                       </div>
             <div class="xright">                    <a href="./" 
title="Trafodion Client Installation Guide">Trafodion Client Installation 
Guide</a>

http://git-wip-us.apache.org/repos/asf/trafodion-site/blob/2d9ea87d/docs/client_install/project-info.html
----------------------------------------------------------------------
diff --git a/docs/client_install/project-info.html 
b/docs/client_install/project-info.html
index 1e6fec4..1aa8aaa 100644
--- a/docs/client_install/project-info.html
+++ b/docs/client_install/project-info.html
@@ -1,5 +1,5 @@
 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" 
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd";>
-<!-- Generated by Apache Maven Doxia Site Renderer 1.4 at 2018-06-04 -->
+<!-- Generated by Apache Maven Doxia Site Renderer 1.4 at 2018-06-07 -->
 <html xmlns="http://www.w3.org/1999/xhtml"; xml:lang="en" lang="en">
   <head>
     <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
@@ -10,7 +10,7 @@
       @import url("./css/site.css");
     </style>
     <link rel="stylesheet" href="./css/print.css" type="text/css" 
media="print" />
-    <meta name="Date-Revision-yyyymmdd" content="20180604" />
+    <meta name="Date-Revision-yyyymmdd" content="20180607" />
     <meta http-equiv="Content-Language" content="en" />
         
         </head>
@@ -27,7 +27,7 @@
             
                     
                 <div class="xleft">
-        <span id="publishDate">Last Published: 2018-06-04</span>
+        <span id="publishDate">Last Published: 2018-06-07</span>
                   &nbsp;| <span id="projectVersion">Version: 2.3.0</span>
                       </div>
             <div class="xright">                    <a href="./" 
title="Trafodion Client Installation Guide">Trafodion Client Installation 
Guide</a>

http://git-wip-us.apache.org/repos/asf/trafodion-site/blob/2d9ea87d/docs/client_install/project-summary.html
----------------------------------------------------------------------
diff --git a/docs/client_install/project-summary.html 
b/docs/client_install/project-summary.html
index ddc89c4..c96babb 100644
--- a/docs/client_install/project-summary.html
+++ b/docs/client_install/project-summary.html
@@ -1,5 +1,5 @@
 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" 
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd";>
-<!-- Generated by Apache Maven Doxia Site Renderer 1.4 at 2018-06-04 -->
+<!-- Generated by Apache Maven Doxia Site Renderer 1.4 at 2018-06-07 -->
 <html xmlns="http://www.w3.org/1999/xhtml"; xml:lang="en" lang="en">
   <head>
     <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
@@ -10,7 +10,7 @@
       @import url("./css/site.css");
     </style>
     <link rel="stylesheet" href="./css/print.css" type="text/css" 
media="print" />
-    <meta name="Date-Revision-yyyymmdd" content="20180604" />
+    <meta name="Date-Revision-yyyymmdd" content="20180607" />
     <meta http-equiv="Content-Language" content="en" />
         
         </head>
@@ -27,7 +27,7 @@
             
                     
                 <div class="xleft">
-        <span id="publishDate">Last Published: 2018-06-04</span>
+        <span id="publishDate">Last Published: 2018-06-07</span>
                   &nbsp;| <span id="projectVersion">Version: 2.3.0</span>
                       </div>
             <div class="xright">                    <a href="./" 
title="Trafodion Client Installation Guide">Trafodion Client Installation 
Guide</a>

http://git-wip-us.apache.org/repos/asf/trafodion-site/blob/2d9ea87d/docs/client_install/source-repository.html
----------------------------------------------------------------------
diff --git a/docs/client_install/source-repository.html 
b/docs/client_install/source-repository.html
index 96c5367..8f99076 100644
--- a/docs/client_install/source-repository.html
+++ b/docs/client_install/source-repository.html
@@ -1,5 +1,5 @@
 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" 
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd";>
-<!-- Generated by Apache Maven Doxia Site Renderer 1.4 at 2018-06-04 -->
+<!-- Generated by Apache Maven Doxia Site Renderer 1.4 at 2018-06-07 -->
 <html xmlns="http://www.w3.org/1999/xhtml"; xml:lang="en" lang="en">
   <head>
     <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
@@ -10,7 +10,7 @@
       @import url("./css/site.css");
     </style>
     <link rel="stylesheet" href="./css/print.css" type="text/css" 
media="print" />
-    <meta name="Date-Revision-yyyymmdd" content="20180604" />
+    <meta name="Date-Revision-yyyymmdd" content="20180607" />
     <meta http-equiv="Content-Language" content="en" />
         
         </head>
@@ -27,7 +27,7 @@
             
                     
                 <div class="xleft">
-        <span id="publishDate">Last Published: 2018-06-04</span>
+        <span id="publishDate">Last Published: 2018-06-07</span>
                   &nbsp;| <span id="projectVersion">Version: 2.3.0</span>
                       </div>
             <div class="xright">                    <a href="./" 
title="Trafodion Client Installation Guide">Trafodion Client Installation 
Guide</a>

http://git-wip-us.apache.org/repos/asf/trafodion-site/blob/2d9ea87d/docs/client_install/team-list.html
----------------------------------------------------------------------
diff --git a/docs/client_install/team-list.html 
b/docs/client_install/team-list.html
index ea2ca0e..7649678 100644
--- a/docs/client_install/team-list.html
+++ b/docs/client_install/team-list.html
@@ -1,5 +1,5 @@
 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" 
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd";>
-<!-- Generated by Apache Maven Doxia Site Renderer 1.4 at 2018-06-04 -->
+<!-- Generated by Apache Maven Doxia Site Renderer 1.4 at 2018-06-07 -->
 <html xmlns="http://www.w3.org/1999/xhtml"; xml:lang="en" lang="en">
   <head>
     <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
@@ -10,7 +10,7 @@
       @import url("./css/site.css");
     </style>
     <link rel="stylesheet" href="./css/print.css" type="text/css" 
media="print" />
-    <meta name="Date-Revision-yyyymmdd" content="20180604" />
+    <meta name="Date-Revision-yyyymmdd" content="20180607" />
     <meta http-equiv="Content-Language" content="en" />
         
         </head>
@@ -27,7 +27,7 @@
             
                     
                 <div class="xleft">
-        <span id="publishDate">Last Published: 2018-06-04</span>
+        <span id="publishDate">Last Published: 2018-06-07</span>
                   &nbsp;| <span id="projectVersion">Version: 2.3.0</span>
                       </div>
             <div class="xright">                    <a href="./" 
title="Trafodion Client Installation Guide">Trafodion Client Installation 
Guide</a>

http://git-wip-us.apache.org/repos/asf/trafodion-site/blob/2d9ea87d/docs/command_interface/Trafodion_Command_Interface_Guide.pdf
----------------------------------------------------------------------
diff --git a/docs/command_interface/Trafodion_Command_Interface_Guide.pdf 
b/docs/command_interface/Trafodion_Command_Interface_Guide.pdf
index 78290d4..5a02d6a 100644
Binary files a/docs/command_interface/Trafodion_Command_Interface_Guide.pdf and 
b/docs/command_interface/Trafodion_Command_Interface_Guide.pdf differ

http://git-wip-us.apache.org/repos/asf/trafodion-site/blob/2d9ea87d/docs/command_interface/dependencies.html
----------------------------------------------------------------------
diff --git a/docs/command_interface/dependencies.html 
b/docs/command_interface/dependencies.html
index 3fc8f6a..ad2b205 100644
--- a/docs/command_interface/dependencies.html
+++ b/docs/command_interface/dependencies.html
@@ -1,5 +1,5 @@
 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" 
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd";>
-<!-- Generated by Apache Maven Doxia Site Renderer 1.4 at 2018-06-04 -->
+<!-- Generated by Apache Maven Doxia Site Renderer 1.4 at 2018-06-07 -->
 <html xmlns="http://www.w3.org/1999/xhtml"; xml:lang="en" lang="en">
   <head>
     <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
@@ -10,7 +10,7 @@
       @import url("./css/site.css");
     </style>
     <link rel="stylesheet" href="./css/print.css" type="text/css" 
media="print" />
-    <meta name="Date-Revision-yyyymmdd" content="20180604" />
+    <meta name="Date-Revision-yyyymmdd" content="20180607" />
     <meta http-equiv="Content-Language" content="en" />
         
         </head>
@@ -27,7 +27,7 @@
             
                     
                 <div class="xleft">
-        <span id="publishDate">Last Published: 2018-06-04</span>
+        <span id="publishDate">Last Published: 2018-06-07</span>
                   &nbsp;| <span id="projectVersion">Version: 2.3.0</span>
                       </div>
             <div class="xright">                    <a href="./" 
title="Trafodion Command Interface Guide">Trafodion Command Interface Guide</a>

http://git-wip-us.apache.org/repos/asf/trafodion-site/blob/2d9ea87d/docs/command_interface/integration.html
----------------------------------------------------------------------
diff --git a/docs/command_interface/integration.html 
b/docs/command_interface/integration.html
index acfbe1f..d418064 100644
--- a/docs/command_interface/integration.html
+++ b/docs/command_interface/integration.html
@@ -1,5 +1,5 @@
 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" 
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd";>
-<!-- Generated by Apache Maven Doxia Site Renderer 1.4 at 2018-06-04 -->
+<!-- Generated by Apache Maven Doxia Site Renderer 1.4 at 2018-06-07 -->
 <html xmlns="http://www.w3.org/1999/xhtml"; xml:lang="en" lang="en">
   <head>
     <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
@@ -10,7 +10,7 @@
       @import url("./css/site.css");
     </style>
     <link rel="stylesheet" href="./css/print.css" type="text/css" 
media="print" />
-    <meta name="Date-Revision-yyyymmdd" content="20180604" />
+    <meta name="Date-Revision-yyyymmdd" content="20180607" />
     <meta http-equiv="Content-Language" content="en" />
         
         </head>
@@ -27,7 +27,7 @@
             
                     
                 <div class="xleft">
-        <span id="publishDate">Last Published: 2018-06-04</span>
+        <span id="publishDate">Last Published: 2018-06-07</span>
                   &nbsp;| <span id="projectVersion">Version: 2.3.0</span>
                       </div>
             <div class="xright">                    <a href="./" 
title="Trafodion Command Interface Guide">Trafodion Command Interface Guide</a>

http://git-wip-us.apache.org/repos/asf/trafodion-site/blob/2d9ea87d/docs/command_interface/issue-tracking.html
----------------------------------------------------------------------
diff --git a/docs/command_interface/issue-tracking.html 
b/docs/command_interface/issue-tracking.html
index 7894a09..4a1dfef 100644
--- a/docs/command_interface/issue-tracking.html
+++ b/docs/command_interface/issue-tracking.html
@@ -1,5 +1,5 @@
 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" 
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd";>
-<!-- Generated by Apache Maven Doxia Site Renderer 1.4 at 2018-06-04 -->
+<!-- Generated by Apache Maven Doxia Site Renderer 1.4 at 2018-06-07 -->
 <html xmlns="http://www.w3.org/1999/xhtml"; xml:lang="en" lang="en">
   <head>
     <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
@@ -10,7 +10,7 @@
       @import url("./css/site.css");
     </style>
     <link rel="stylesheet" href="./css/print.css" type="text/css" 
media="print" />
-    <meta name="Date-Revision-yyyymmdd" content="20180604" />
+    <meta name="Date-Revision-yyyymmdd" content="20180607" />
     <meta http-equiv="Content-Language" content="en" />
         
         </head>
@@ -27,7 +27,7 @@
             
                     
                 <div class="xleft">
-        <span id="publishDate">Last Published: 2018-06-04</span>
+        <span id="publishDate">Last Published: 2018-06-07</span>
                   &nbsp;| <span id="projectVersion">Version: 2.3.0</span>
                       </div>
             <div class="xright">                    <a href="./" 
title="Trafodion Command Interface Guide">Trafodion Command Interface Guide</a>

http://git-wip-us.apache.org/repos/asf/trafodion-site/blob/2d9ea87d/docs/command_interface/license.html
----------------------------------------------------------------------
diff --git a/docs/command_interface/license.html 
b/docs/command_interface/license.html
index 8090e23..0561d96 100644
--- a/docs/command_interface/license.html
+++ b/docs/command_interface/license.html
@@ -1,5 +1,5 @@
 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" 
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd";>
-<!-- Generated by Apache Maven Doxia Site Renderer 1.4 at 2018-06-04 -->
+<!-- Generated by Apache Maven Doxia Site Renderer 1.4 at 2018-06-07 -->
 <html xmlns="http://www.w3.org/1999/xhtml"; xml:lang="en" lang="en">
   <head>
     <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
@@ -10,7 +10,7 @@
       @import url("./css/site.css");
     </style>
     <link rel="stylesheet" href="./css/print.css" type="text/css" 
media="print" />
-    <meta name="Date-Revision-yyyymmdd" content="20180604" />
+    <meta name="Date-Revision-yyyymmdd" content="20180607" />
     <meta http-equiv="Content-Language" content="en" />
         
         </head>
@@ -27,7 +27,7 @@
             
                     
                 <div class="xleft">
-        <span id="publishDate">Last Published: 2018-06-04</span>
+        <span id="publishDate">Last Published: 2018-06-07</span>
                   &nbsp;| <span id="projectVersion">Version: 2.3.0</span>
                       </div>
             <div class="xright">                    <a href="./" 
title="Trafodion Command Interface Guide">Trafodion Command Interface Guide</a>

http://git-wip-us.apache.org/repos/asf/trafodion-site/blob/2d9ea87d/docs/command_interface/mail-lists.html
----------------------------------------------------------------------
diff --git a/docs/command_interface/mail-lists.html 
b/docs/command_interface/mail-lists.html
index 8a8d990..3bcc91b 100644
--- a/docs/command_interface/mail-lists.html
+++ b/docs/command_interface/mail-lists.html
@@ -1,5 +1,5 @@
 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" 
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd";>
-<!-- Generated by Apache Maven Doxia Site Renderer 1.4 at 2018-06-04 -->
+<!-- Generated by Apache Maven Doxia Site Renderer 1.4 at 2018-06-07 -->
 <html xmlns="http://www.w3.org/1999/xhtml"; xml:lang="en" lang="en">
   <head>
     <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
@@ -10,7 +10,7 @@
       @import url("./css/site.css");
     </style>
     <link rel="stylesheet" href="./css/print.css" type="text/css" 
media="print" />
-    <meta name="Date-Revision-yyyymmdd" content="20180604" />
+    <meta name="Date-Revision-yyyymmdd" content="20180607" />
     <meta http-equiv="Content-Language" content="en" />
         
         </head>
@@ -27,7 +27,7 @@
             
                     
                 <div class="xleft">
-        <span id="publishDate">Last Published: 2018-06-04</span>
+        <span id="publishDate">Last Published: 2018-06-07</span>
                   &nbsp;| <span id="projectVersion">Version: 2.3.0</span>
                       </div>
             <div class="xright">                    <a href="./" 
title="Trafodion Command Interface Guide">Trafodion Command Interface Guide</a>

http://git-wip-us.apache.org/repos/asf/trafodion-site/blob/2d9ea87d/docs/command_interface/project-info.html
----------------------------------------------------------------------
diff --git a/docs/command_interface/project-info.html 
b/docs/command_interface/project-info.html
index f83a2cf..c995449 100644
--- a/docs/command_interface/project-info.html
+++ b/docs/command_interface/project-info.html
@@ -1,5 +1,5 @@
 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" 
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd";>
-<!-- Generated by Apache Maven Doxia Site Renderer 1.4 at 2018-06-04 -->
+<!-- Generated by Apache Maven Doxia Site Renderer 1.4 at 2018-06-07 -->
 <html xmlns="http://www.w3.org/1999/xhtml"; xml:lang="en" lang="en">
   <head>
     <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
@@ -10,7 +10,7 @@
       @import url("./css/site.css");
     </style>
     <link rel="stylesheet" href="./css/print.css" type="text/css" 
media="print" />
-    <meta name="Date-Revision-yyyymmdd" content="20180604" />
+    <meta name="Date-Revision-yyyymmdd" content="20180607" />
     <meta http-equiv="Content-Language" content="en" />
         
         </head>
@@ -27,7 +27,7 @@
             
                     
                 <div class="xleft">
-        <span id="publishDate">Last Published: 2018-06-04</span>
+        <span id="publishDate">Last Published: 2018-06-07</span>
                   &nbsp;| <span id="projectVersion">Version: 2.3.0</span>
                       </div>
             <div class="xright">                    <a href="./" 
title="Trafodion Command Interface Guide">Trafodion Command Interface Guide</a>

http://git-wip-us.apache.org/repos/asf/trafodion-site/blob/2d9ea87d/docs/command_interface/project-summary.html
----------------------------------------------------------------------
diff --git a/docs/command_interface/project-summary.html 
b/docs/command_interface/project-summary.html
index 2816a65..a357877 100644
--- a/docs/command_interface/project-summary.html
+++ b/docs/command_interface/project-summary.html
@@ -1,5 +1,5 @@
 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" 
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd";>
-<!-- Generated by Apache Maven Doxia Site Renderer 1.4 at 2018-06-04 -->
+<!-- Generated by Apache Maven Doxia Site Renderer 1.4 at 2018-06-07 -->
 <html xmlns="http://www.w3.org/1999/xhtml"; xml:lang="en" lang="en">
   <head>
     <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
@@ -10,7 +10,7 @@
       @import url("./css/site.css");
     </style>
     <link rel="stylesheet" href="./css/print.css" type="text/css" 
media="print" />
-    <meta name="Date-Revision-yyyymmdd" content="20180604" />
+    <meta name="Date-Revision-yyyymmdd" content="20180607" />
     <meta http-equiv="Content-Language" content="en" />
         
         </head>
@@ -27,7 +27,7 @@
             
                     
                 <div class="xleft">
-        <span id="publishDate">Last Published: 2018-06-04</span>
+        <span id="publishDate">Last Published: 2018-06-07</span>
                   &nbsp;| <span id="projectVersion">Version: 2.3.0</span>
                       </div>
             <div class="xright">                    <a href="./" 
title="Trafodion Command Interface Guide">Trafodion Command Interface Guide</a>

http://git-wip-us.apache.org/repos/asf/trafodion-site/blob/2d9ea87d/docs/command_interface/source-repository.html
----------------------------------------------------------------------
diff --git a/docs/command_interface/source-repository.html 
b/docs/command_interface/source-repository.html
index 733e9d3..cc2e4d2 100644
--- a/docs/command_interface/source-repository.html
+++ b/docs/command_interface/source-repository.html
@@ -1,5 +1,5 @@
 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" 
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd";>
-<!-- Generated by Apache Maven Doxia Site Renderer 1.4 at 2018-06-04 -->
+<!-- Generated by Apache Maven Doxia Site Renderer 1.4 at 2018-06-07 -->
 <html xmlns="http://www.w3.org/1999/xhtml"; xml:lang="en" lang="en">
   <head>
     <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
@@ -10,7 +10,7 @@
       @import url("./css/site.css");
     </style>
     <link rel="stylesheet" href="./css/print.css" type="text/css" 
media="print" />
-    <meta name="Date-Revision-yyyymmdd" content="20180604" />
+    <meta name="Date-Revision-yyyymmdd" content="20180607" />
     <meta http-equiv="Content-Language" content="en" />
         
         </head>
@@ -27,7 +27,7 @@
             
                     
                 <div class="xleft">
-        <span id="publishDate">Last Published: 2018-06-04</span>
+        <span id="publishDate">Last Published: 2018-06-07</span>
                   &nbsp;| <span id="projectVersion">Version: 2.3.0</span>
                       </div>
             <div class="xright">                    <a href="./" 
title="Trafodion Command Interface Guide">Trafodion Command Interface Guide</a>

http://git-wip-us.apache.org/repos/asf/trafodion-site/blob/2d9ea87d/docs/command_interface/team-list.html
----------------------------------------------------------------------
diff --git a/docs/command_interface/team-list.html 
b/docs/command_interface/team-list.html
index 9c9bec7..815d3f5 100644
--- a/docs/command_interface/team-list.html
+++ b/docs/command_interface/team-list.html
@@ -1,5 +1,5 @@
 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" 
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd";>
-<!-- Generated by Apache Maven Doxia Site Renderer 1.4 at 2018-06-04 -->
+<!-- Generated by Apache Maven Doxia Site Renderer 1.4 at 2018-06-07 -->
 <html xmlns="http://www.w3.org/1999/xhtml"; xml:lang="en" lang="en">
   <head>
     <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
@@ -10,7 +10,7 @@
       @import url("./css/site.css");
     </style>
     <link rel="stylesheet" href="./css/print.css" type="text/css" 
media="print" />
-    <meta name="Date-Revision-yyyymmdd" content="20180604" />
+    <meta name="Date-Revision-yyyymmdd" content="20180607" />
     <meta http-equiv="Content-Language" content="en" />
         
         </head>
@@ -27,7 +27,7 @@
             
                     
                 <div class="xleft">
-        <span id="publishDate">Last Published: 2018-06-04</span>
+        <span id="publishDate">Last Published: 2018-06-07</span>
                   &nbsp;| <span id="projectVersion">Version: 2.3.0</span>
                       </div>
             <div class="xright">                    <a href="./" 
title="Trafodion Command Interface Guide">Trafodion Command Interface Guide</a>

http://git-wip-us.apache.org/repos/asf/trafodion-site/blob/2d9ea87d/docs/cqd_reference/Trafodion_CQD_Reference_Guide.pdf
----------------------------------------------------------------------
diff --git a/docs/cqd_reference/Trafodion_CQD_Reference_Guide.pdf 
b/docs/cqd_reference/Trafodion_CQD_Reference_Guide.pdf
index 9f4bf49..21c60db 100644
Binary files a/docs/cqd_reference/Trafodion_CQD_Reference_Guide.pdf and 
b/docs/cqd_reference/Trafodion_CQD_Reference_Guide.pdf differ

http://git-wip-us.apache.org/repos/asf/trafodion-site/blob/2d9ea87d/docs/cqd_reference/dependencies.html
----------------------------------------------------------------------
diff --git a/docs/cqd_reference/dependencies.html 
b/docs/cqd_reference/dependencies.html
index df11e59..c800b9e 100644
--- a/docs/cqd_reference/dependencies.html
+++ b/docs/cqd_reference/dependencies.html
@@ -1,5 +1,5 @@
 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" 
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd";>
-<!-- Generated by Apache Maven Doxia Site Renderer 1.4 at 2018-06-04 -->
+<!-- Generated by Apache Maven Doxia Site Renderer 1.4 at 2018-06-07 -->
 <html xmlns="http://www.w3.org/1999/xhtml"; xml:lang="en" lang="en">
   <head>
     <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
@@ -10,7 +10,7 @@
       @import url("./css/site.css");
     </style>
     <link rel="stylesheet" href="./css/print.css" type="text/css" 
media="print" />
-    <meta name="Date-Revision-yyyymmdd" content="20180604" />
+    <meta name="Date-Revision-yyyymmdd" content="20180607" />
     <meta http-equiv="Content-Language" content="en" />
         
         </head>
@@ -27,7 +27,7 @@
             
                     
                 <div class="xleft">
-        <span id="publishDate">Last Published: 2018-06-04</span>
+        <span id="publishDate">Last Published: 2018-06-07</span>
                   &nbsp;| <span id="projectVersion">Version: 2.3.0</span>
                       </div>
             <div class="xright">                    <a href="./" 
title="Trafodion CQD Reference Guide">Trafodion CQD Reference Guide</a>

http://git-wip-us.apache.org/repos/asf/trafodion-site/blob/2d9ea87d/docs/cqd_reference/integration.html
----------------------------------------------------------------------
diff --git a/docs/cqd_reference/integration.html 
b/docs/cqd_reference/integration.html
index 5ea20ad..9576452 100644
--- a/docs/cqd_reference/integration.html
+++ b/docs/cqd_reference/integration.html
@@ -1,5 +1,5 @@
 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" 
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd";>
-<!-- Generated by Apache Maven Doxia Site Renderer 1.4 at 2018-06-04 -->
+<!-- Generated by Apache Maven Doxia Site Renderer 1.4 at 2018-06-07 -->
 <html xmlns="http://www.w3.org/1999/xhtml"; xml:lang="en" lang="en">
   <head>
     <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
@@ -10,7 +10,7 @@
       @import url("./css/site.css");
     </style>
     <link rel="stylesheet" href="./css/print.css" type="text/css" 
media="print" />
-    <meta name="Date-Revision-yyyymmdd" content="20180604" />
+    <meta name="Date-Revision-yyyymmdd" content="20180607" />
     <meta http-equiv="Content-Language" content="en" />
         
         </head>
@@ -27,7 +27,7 @@
             
                     
                 <div class="xleft">
-        <span id="publishDate">Last Published: 2018-06-04</span>
+        <span id="publishDate">Last Published: 2018-06-07</span>
                   &nbsp;| <span id="projectVersion">Version: 2.3.0</span>
                       </div>
             <div class="xright">                    <a href="./" 
title="Trafodion CQD Reference Guide">Trafodion CQD Reference Guide</a>

http://git-wip-us.apache.org/repos/asf/trafodion-site/blob/2d9ea87d/docs/cqd_reference/issue-tracking.html
----------------------------------------------------------------------
diff --git a/docs/cqd_reference/issue-tracking.html 
b/docs/cqd_reference/issue-tracking.html
index 5d77f0f..fdeae5c 100644
--- a/docs/cqd_reference/issue-tracking.html
+++ b/docs/cqd_reference/issue-tracking.html
@@ -1,5 +1,5 @@
 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" 
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd";>
-<!-- Generated by Apache Maven Doxia Site Renderer 1.4 at 2018-06-04 -->
+<!-- Generated by Apache Maven Doxia Site Renderer 1.4 at 2018-06-07 -->
 <html xmlns="http://www.w3.org/1999/xhtml"; xml:lang="en" lang="en">
   <head>
     <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
@@ -10,7 +10,7 @@
       @import url("./css/site.css");
     </style>
     <link rel="stylesheet" href="./css/print.css" type="text/css" 
media="print" />
-    <meta name="Date-Revision-yyyymmdd" content="20180604" />
+    <meta name="Date-Revision-yyyymmdd" content="20180607" />
     <meta http-equiv="Content-Language" content="en" />
         
         </head>
@@ -27,7 +27,7 @@
             
                     
                 <div class="xleft">
-        <span id="publishDate">Last Published: 2018-06-04</span>
+        <span id="publishDate">Last Published: 2018-06-07</span>
                   &nbsp;| <span id="projectVersion">Version: 2.3.0</span>
                       </div>
             <div class="xright">                    <a href="./" 
title="Trafodion CQD Reference Guide">Trafodion CQD Reference Guide</a>

http://git-wip-us.apache.org/repos/asf/trafodion-site/blob/2d9ea87d/docs/cqd_reference/license.html
----------------------------------------------------------------------
diff --git a/docs/cqd_reference/license.html b/docs/cqd_reference/license.html
index 2f37b27..d1bfc06 100644
--- a/docs/cqd_reference/license.html
+++ b/docs/cqd_reference/license.html
@@ -1,5 +1,5 @@
 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" 
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd";>
-<!-- Generated by Apache Maven Doxia Site Renderer 1.4 at 2018-06-04 -->
+<!-- Generated by Apache Maven Doxia Site Renderer 1.4 at 2018-06-07 -->
 <html xmlns="http://www.w3.org/1999/xhtml"; xml:lang="en" lang="en">
   <head>
     <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
@@ -10,7 +10,7 @@
       @import url("./css/site.css");
     </style>
     <link rel="stylesheet" href="./css/print.css" type="text/css" 
media="print" />
-    <meta name="Date-Revision-yyyymmdd" content="20180604" />
+    <meta name="Date-Revision-yyyymmdd" content="20180607" />
     <meta http-equiv="Content-Language" content="en" />
         
         </head>
@@ -27,7 +27,7 @@
             
                     
                 <div class="xleft">
-        <span id="publishDate">Last Published: 2018-06-04</span>
+        <span id="publishDate">Last Published: 2018-06-07</span>
                   &nbsp;| <span id="projectVersion">Version: 2.3.0</span>
                       </div>
             <div class="xright">                    <a href="./" 
title="Trafodion CQD Reference Guide">Trafodion CQD Reference Guide</a>

http://git-wip-us.apache.org/repos/asf/trafodion-site/blob/2d9ea87d/docs/cqd_reference/mail-lists.html
----------------------------------------------------------------------
diff --git a/docs/cqd_reference/mail-lists.html 
b/docs/cqd_reference/mail-lists.html
index 2e2b2c2..d5d2cfc 100644
--- a/docs/cqd_reference/mail-lists.html
+++ b/docs/cqd_reference/mail-lists.html
@@ -1,5 +1,5 @@
 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" 
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd";>
-<!-- Generated by Apache Maven Doxia Site Renderer 1.4 at 2018-06-04 -->
+<!-- Generated by Apache Maven Doxia Site Renderer 1.4 at 2018-06-07 -->
 <html xmlns="http://www.w3.org/1999/xhtml"; xml:lang="en" lang="en">
   <head>
     <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
@@ -10,7 +10,7 @@
       @import url("./css/site.css");
     </style>
     <link rel="stylesheet" href="./css/print.css" type="text/css" 
media="print" />
-    <meta name="Date-Revision-yyyymmdd" content="20180604" />
+    <meta name="Date-Revision-yyyymmdd" content="20180607" />
     <meta http-equiv="Content-Language" content="en" />
         
         </head>
@@ -27,7 +27,7 @@
             
                     
                 <div class="xleft">
-        <span id="publishDate">Last Published: 2018-06-04</span>
+        <span id="publishDate">Last Published: 2018-06-07</span>
                   &nbsp;| <span id="projectVersion">Version: 2.3.0</span>
                       </div>
             <div class="xright">                    <a href="./" 
title="Trafodion CQD Reference Guide">Trafodion CQD Reference Guide</a>

http://git-wip-us.apache.org/repos/asf/trafodion-site/blob/2d9ea87d/docs/cqd_reference/project-info.html
----------------------------------------------------------------------
diff --git a/docs/cqd_reference/project-info.html 
b/docs/cqd_reference/project-info.html
index d8b27b1..3e67df4 100644
--- a/docs/cqd_reference/project-info.html
+++ b/docs/cqd_reference/project-info.html
@@ -1,5 +1,5 @@
 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" 
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd";>
-<!-- Generated by Apache Maven Doxia Site Renderer 1.4 at 2018-06-04 -->
+<!-- Generated by Apache Maven Doxia Site Renderer 1.4 at 2018-06-07 -->
 <html xmlns="http://www.w3.org/1999/xhtml"; xml:lang="en" lang="en">
   <head>
     <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
@@ -10,7 +10,7 @@
       @import url("./css/site.css");
     </style>
     <link rel="stylesheet" href="./css/print.css" type="text/css" 
media="print" />
-    <meta name="Date-Revision-yyyymmdd" content="20180604" />
+    <meta name="Date-Revision-yyyymmdd" content="20180607" />
     <meta http-equiv="Content-Language" content="en" />
         
         </head>
@@ -27,7 +27,7 @@
             
                     
                 <div class="xleft">
-        <span id="publishDate">Last Published: 2018-06-04</span>
+        <span id="publishDate">Last Published: 2018-06-07</span>
                   &nbsp;| <span id="projectVersion">Version: 2.3.0</span>
                       </div>
             <div class="xright">                    <a href="./" 
title="Trafodion CQD Reference Guide">Trafodion CQD Reference Guide</a>

http://git-wip-us.apache.org/repos/asf/trafodion-site/blob/2d9ea87d/docs/cqd_reference/project-summary.html
----------------------------------------------------------------------
diff --git a/docs/cqd_reference/project-summary.html 
b/docs/cqd_reference/project-summary.html
index 03c56be..08eee83 100644
--- a/docs/cqd_reference/project-summary.html
+++ b/docs/cqd_reference/project-summary.html
@@ -1,5 +1,5 @@
 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" 
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd";>
-<!-- Generated by Apache Maven Doxia Site Renderer 1.4 at 2018-06-04 -->
+<!-- Generated by Apache Maven Doxia Site Renderer 1.4 at 2018-06-07 -->
 <html xmlns="http://www.w3.org/1999/xhtml"; xml:lang="en" lang="en">
   <head>
     <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
@@ -10,7 +10,7 @@
       @import url("./css/site.css");
     </style>
     <link rel="stylesheet" href="./css/print.css" type="text/css" 
media="print" />
-    <meta name="Date-Revision-yyyymmdd" content="20180604" />
+    <meta name="Date-Revision-yyyymmdd" content="20180607" />
     <meta http-equiv="Content-Language" content="en" />
         
         </head>
@@ -27,7 +27,7 @@
             
                     
                 <div class="xleft">
-        <span id="publishDate">Last Published: 2018-06-04</span>
+        <span id="publishDate">Last Published: 2018-06-07</span>
                   &nbsp;| <span id="projectVersion">Version: 2.3.0</span>
                       </div>
             <div class="xright">                    <a href="./" 
title="Trafodion CQD Reference Guide">Trafodion CQD Reference Guide</a>

http://git-wip-us.apache.org/repos/asf/trafodion-site/blob/2d9ea87d/docs/cqd_reference/source-repository.html
----------------------------------------------------------------------
diff --git a/docs/cqd_reference/source-repository.html 
b/docs/cqd_reference/source-repository.html
index ded432e..e40851e 100644
--- a/docs/cqd_reference/source-repository.html
+++ b/docs/cqd_reference/source-repository.html
@@ -1,5 +1,5 @@
 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" 
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd";>
-<!-- Generated by Apache Maven Doxia Site Renderer 1.4 at 2018-06-04 -->
+<!-- Generated by Apache Maven Doxia Site Renderer 1.4 at 2018-06-07 -->
 <html xmlns="http://www.w3.org/1999/xhtml"; xml:lang="en" lang="en">
   <head>
     <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
@@ -10,7 +10,7 @@
       @import url("./css/site.css");
     </style>
     <link rel="stylesheet" href="./css/print.css" type="text/css" 
media="print" />
-    <meta name="Date-Revision-yyyymmdd" content="20180604" />
+    <meta name="Date-Revision-yyyymmdd" content="20180607" />
     <meta http-equiv="Content-Language" content="en" />
         
         </head>
@@ -27,7 +27,7 @@
             
                     
                 <div class="xleft">
-        <span id="publishDate">Last Published: 2018-06-04</span>
+        <span id="publishDate">Last Published: 2018-06-07</span>
                   &nbsp;| <span id="projectVersion">Version: 2.3.0</span>
                       </div>
             <div class="xright">                    <a href="./" 
title="Trafodion CQD Reference Guide">Trafodion CQD Reference Guide</a>

http://git-wip-us.apache.org/repos/asf/trafodion-site/blob/2d9ea87d/docs/cqd_reference/team-list.html
----------------------------------------------------------------------
diff --git a/docs/cqd_reference/team-list.html 
b/docs/cqd_reference/team-list.html
index beaf030..9af50bf 100644
--- a/docs/cqd_reference/team-list.html
+++ b/docs/cqd_reference/team-list.html
@@ -1,5 +1,5 @@
 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" 
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd";>
-<!-- Generated by Apache Maven Doxia Site Renderer 1.4 at 2018-06-04 -->
+<!-- Generated by Apache Maven Doxia Site Renderer 1.4 at 2018-06-07 -->
 <html xmlns="http://www.w3.org/1999/xhtml"; xml:lang="en" lang="en">
   <head>
     <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
@@ -10,7 +10,7 @@
       @import url("./css/site.css");
     </style>
     <link rel="stylesheet" href="./css/print.css" type="text/css" 
media="print" />
-    <meta name="Date-Revision-yyyymmdd" content="20180604" />
+    <meta name="Date-Revision-yyyymmdd" content="20180607" />
     <meta http-equiv="Content-Language" content="en" />
         
         </head>
@@ -27,7 +27,7 @@
             
                     
                 <div class="xleft">
-        <span id="publishDate">Last Published: 2018-06-04</span>
+        <span id="publishDate">Last Published: 2018-06-07</span>
                   &nbsp;| <span id="projectVersion">Version: 2.3.0</span>
                       </div>
             <div class="xright">                    <a href="./" 
title="Trafodion CQD Reference Guide">Trafodion CQD Reference Guide</a>

http://git-wip-us.apache.org/repos/asf/trafodion-site/blob/2d9ea87d/docs/dcs_reference/apidocs/allclasses-frame.html
----------------------------------------------------------------------
diff --git a/docs/dcs_reference/apidocs/allclasses-frame.html 
b/docs/dcs_reference/apidocs/allclasses-frame.html
index 55007ca..0e855b9 100644
--- a/docs/dcs_reference/apidocs/allclasses-frame.html
+++ b/docs/dcs_reference/apidocs/allclasses-frame.html
@@ -2,10 +2,10 @@
 <!-- NewPage -->
 <html lang="zh">
 <head>
-<!-- Generated by javadoc (version 1.7.0_80) on Mon Jun 04 18:53:34 CST 2018 
-->
+<!-- Generated by javadoc (version 1.7.0_80) on Thu Jun 07 15:16:58 CST 2018 
-->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
 <title>所有类 (Trafodion Database Connectivity Services 2.3.0 API)</title>
-<meta name="date" content="2018-06-04">
+<meta name="date" content="2018-06-07">
 <link rel="stylesheet" type="text/css" href="stylesheet.css" title="Style">
 </head>
 <body>

http://git-wip-us.apache.org/repos/asf/trafodion-site/blob/2d9ea87d/docs/dcs_reference/apidocs/allclasses-noframe.html
----------------------------------------------------------------------
diff --git a/docs/dcs_reference/apidocs/allclasses-noframe.html 
b/docs/dcs_reference/apidocs/allclasses-noframe.html
index bbb61d4..df6cdcd 100644
--- a/docs/dcs_reference/apidocs/allclasses-noframe.html
+++ b/docs/dcs_reference/apidocs/allclasses-noframe.html
@@ -2,10 +2,10 @@
 <!-- NewPage -->
 <html lang="zh">
 <head>
-<!-- Generated by javadoc (version 1.7.0_80) on Mon Jun 04 18:53:34 CST 2018 
-->
+<!-- Generated by javadoc (version 1.7.0_80) on Thu Jun 07 15:16:58 CST 2018 
-->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
 <title>所有类 (Trafodion Database Connectivity Services 2.3.0 API)</title>
-<meta name="date" content="2018-06-04">
+<meta name="date" content="2018-06-07">
 <link rel="stylesheet" type="text/css" href="stylesheet.css" title="Style">
 </head>
 <body>

http://git-wip-us.apache.org/repos/asf/trafodion-site/blob/2d9ea87d/docs/dcs_reference/apidocs/constant-values.html
----------------------------------------------------------------------
diff --git a/docs/dcs_reference/apidocs/constant-values.html 
b/docs/dcs_reference/apidocs/constant-values.html
index 797f369..115e583 100644
--- a/docs/dcs_reference/apidocs/constant-values.html
+++ b/docs/dcs_reference/apidocs/constant-values.html
@@ -2,10 +2,10 @@
 <!-- NewPage -->
 <html lang="zh">
 <head>
-<!-- Generated by javadoc (version 1.7.0_80) on Mon Jun 04 18:53:33 CST 2018 
-->
+<!-- Generated by javadoc (version 1.7.0_80) on Thu Jun 07 15:16:57 CST 2018 
-->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
 <title>常量字段值 (Trafodion Database Connectivity Services 2.3.0 
API)</title>
-<meta name="date" content="2018-06-04">
+<meta name="date" content="2018-06-07">
 <link rel="stylesheet" type="text/css" href="stylesheet.css" title="Style">
 </head>
 <body>

http://git-wip-us.apache.org/repos/asf/trafodion-site/blob/2d9ea87d/docs/dcs_reference/apidocs/deprecated-list.html
----------------------------------------------------------------------
diff --git a/docs/dcs_reference/apidocs/deprecated-list.html 
b/docs/dcs_reference/apidocs/deprecated-list.html
index 9ab558a..6e45587 100644
--- a/docs/dcs_reference/apidocs/deprecated-list.html
+++ b/docs/dcs_reference/apidocs/deprecated-list.html
@@ -2,10 +2,10 @@
 <!-- NewPage -->
 <html lang="zh">
 <head>
-<!-- Generated by javadoc (version 1.7.0_80) on Mon Jun 04 18:53:34 CST 2018 
-->
+<!-- Generated by javadoc (version 1.7.0_80) on Thu Jun 07 15:16:58 CST 2018 
-->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
 <title>已过时的列表 (Trafodion Database Connectivity Services 2.3.0 
API)</title>
-<meta name="date" content="2018-06-04">
+<meta name="date" content="2018-06-07">
 <link rel="stylesheet" type="text/css" href="stylesheet.css" title="Style">
 </head>
 <body>

http://git-wip-us.apache.org/repos/asf/trafodion-site/blob/2d9ea87d/docs/dcs_reference/apidocs/help-doc.html
----------------------------------------------------------------------
diff --git a/docs/dcs_reference/apidocs/help-doc.html 
b/docs/dcs_reference/apidocs/help-doc.html
index 5fd2b8a..8f7a44f 100644
--- a/docs/dcs_reference/apidocs/help-doc.html
+++ b/docs/dcs_reference/apidocs/help-doc.html
@@ -2,10 +2,10 @@
 <!-- NewPage -->
 <html lang="zh">
 <head>
-<!-- Generated by javadoc (version 1.7.0_80) on Mon Jun 04 18:53:34 CST 2018 
-->
+<!-- Generated by javadoc (version 1.7.0_80) on Thu Jun 07 15:16:58 CST 2018 
-->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
 <title>API 帮助 (Trafodion Database Connectivity Services 2.3.0 API)</title>
-<meta name="date" content="2018-06-04">
+<meta name="date" content="2018-06-07">
 <link rel="stylesheet" type="text/css" href="stylesheet.css" title="Style">
 </head>
 <body>

http://git-wip-us.apache.org/repos/asf/trafodion-site/blob/2d9ea87d/docs/dcs_reference/apidocs/index-all.html
----------------------------------------------------------------------
diff --git a/docs/dcs_reference/apidocs/index-all.html 
b/docs/dcs_reference/apidocs/index-all.html
index ed376cb..c8137e4 100644
--- a/docs/dcs_reference/apidocs/index-all.html
+++ b/docs/dcs_reference/apidocs/index-all.html
@@ -2,10 +2,10 @@
 <!-- NewPage -->
 <html lang="zh">
 <head>
-<!-- Generated by javadoc (version 1.7.0_80) on Mon Jun 04 18:53:34 CST 2018 
-->
+<!-- Generated by javadoc (version 1.7.0_80) on Thu Jun 07 15:16:58 CST 2018 
-->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
 <title>索引 (Trafodion Database Connectivity Services 2.3.0 API)</title>
-<meta name="date" content="2018-06-04">
+<meta name="date" content="2018-06-07">
 <link rel="stylesheet" type="text/css" href="./stylesheet.css" title="Style">
 </head>
 <body>

http://git-wip-us.apache.org/repos/asf/trafodion-site/blob/2d9ea87d/docs/dcs_reference/apidocs/index.html
----------------------------------------------------------------------
diff --git a/docs/dcs_reference/apidocs/index.html 
b/docs/dcs_reference/apidocs/index.html
index dfe555e..887d162 100644
--- a/docs/dcs_reference/apidocs/index.html
+++ b/docs/dcs_reference/apidocs/index.html
@@ -2,7 +2,7 @@
 <!-- NewPage -->
 <html lang="zh">
 <head>
-<!-- Generated by javadoc on Mon Jun 04 18:53:34 CST 2018 -->
+<!-- Generated by javadoc on Thu Jun 07 15:16:58 CST 2018 -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
 <title>Trafodion Database Connectivity Services 2.3.0 API</title>
 <script type="text/javascript">

http://git-wip-us.apache.org/repos/asf/trafodion-site/blob/2d9ea87d/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 db15bf3..b2b54cc 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 @@
 <!-- NewPage -->
 <html lang="zh">
 <head>
-<!-- Generated by javadoc (version 1.7.0_80) on Mon Jun 04 18:53:31 CST 2018 
-->
+<!-- Generated by javadoc (version 1.7.0_80) on Thu Jun 07 15:16:56 CST 2018 
-->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
 <title>Constants (Trafodion Database Connectivity Services 2.3.0 API)</title>
-<meta name="date" content="2018-06-04">
+<meta name="date" content="2018-06-07">
 <link rel="stylesheet" type="text/css" href="../../../stylesheet.css" 
title="Style">
 </head>
 <body>

http://git-wip-us.apache.org/repos/asf/trafodion-site/blob/2d9ea87d/docs/dcs_reference/apidocs/org/trafodion/dcs/VersionAnnotation.html
----------------------------------------------------------------------
diff --git 
a/docs/dcs_reference/apidocs/org/trafodion/dcs/VersionAnnotation.html 
b/docs/dcs_reference/apidocs/org/trafodion/dcs/VersionAnnotation.html
index f9befef..4a3f31d 100644
--- a/docs/dcs_reference/apidocs/org/trafodion/dcs/VersionAnnotation.html
+++ b/docs/dcs_reference/apidocs/org/trafodion/dcs/VersionAnnotation.html
@@ -2,10 +2,10 @@
 <!-- NewPage -->
 <html lang="zh">
 <head>
-<!-- Generated by javadoc (version 1.7.0_80) on Mon Jun 04 18:53:31 CST 2018 
-->
+<!-- Generated by javadoc (version 1.7.0_80) on Thu Jun 07 15:16:56 CST 2018 
-->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
 <title>VersionAnnotation (Trafodion Database Connectivity Services 2.3.0 
API)</title>
-<meta name="date" content="2018-06-04">
+<meta name="date" content="2018-06-07">
 <link rel="stylesheet" type="text/css" href="../../../stylesheet.css" 
title="Style">
 </head>
 <body>

http://git-wip-us.apache.org/repos/asf/trafodion-site/blob/2d9ea87d/docs/dcs_reference/apidocs/org/trafodion/dcs/class-use/Constants.html
----------------------------------------------------------------------
diff --git 
a/docs/dcs_reference/apidocs/org/trafodion/dcs/class-use/Constants.html 
b/docs/dcs_reference/apidocs/org/trafodion/dcs/class-use/Constants.html
index 9396f76..fd81a9d 100644
--- a/docs/dcs_reference/apidocs/org/trafodion/dcs/class-use/Constants.html
+++ b/docs/dcs_reference/apidocs/org/trafodion/dcs/class-use/Constants.html
@@ -2,10 +2,10 @@
 <!-- NewPage -->
 <html lang="zh">
 <head>
-<!-- Generated by javadoc (version 1.7.0_80) on Mon Jun 04 18:53:33 CST 2018 
-->
+<!-- Generated by javadoc (version 1.7.0_80) on Thu Jun 07 15:16:57 CST 2018 
-->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
 <title>类 org.trafodion.dcs.Constants的使用 (Trafodion Database 
Connectivity Services 2.3.0 API)</title>
-<meta name="date" content="2018-06-04">
+<meta name="date" content="2018-06-07">
 <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" 
title="Style">
 </head>
 <body>

http://git-wip-us.apache.org/repos/asf/trafodion-site/blob/2d9ea87d/docs/dcs_reference/apidocs/org/trafodion/dcs/class-use/VersionAnnotation.html
----------------------------------------------------------------------
diff --git 
a/docs/dcs_reference/apidocs/org/trafodion/dcs/class-use/VersionAnnotation.html 
b/docs/dcs_reference/apidocs/org/trafodion/dcs/class-use/VersionAnnotation.html
index 1c09cc3..8d98ee9 100644
--- 
a/docs/dcs_reference/apidocs/org/trafodion/dcs/class-use/VersionAnnotation.html
+++ 
b/docs/dcs_reference/apidocs/org/trafodion/dcs/class-use/VersionAnnotation.html
@@ -2,10 +2,10 @@
 <!-- NewPage -->
 <html lang="zh">
 <head>
-<!-- Generated by javadoc (version 1.7.0_80) on Mon Jun 04 18:53:33 CST 2018 
-->
+<!-- Generated by javadoc (version 1.7.0_80) on Thu Jun 07 15:16:57 CST 2018 
-->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
 <title>类 org.trafodion.dcs.VersionAnnotation的使用 (Trafodion Database 
Connectivity Services 2.3.0 API)</title>
-<meta name="date" content="2018-06-04">
+<meta name="date" content="2018-06-07">
 <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" 
title="Style">
 </head>
 <body>

http://git-wip-us.apache.org/repos/asf/trafodion-site/blob/2d9ea87d/docs/dcs_reference/apidocs/org/trafodion/dcs/http/FilterContainer.html
----------------------------------------------------------------------
diff --git 
a/docs/dcs_reference/apidocs/org/trafodion/dcs/http/FilterContainer.html 
b/docs/dcs_reference/apidocs/org/trafodion/dcs/http/FilterContainer.html
index fb43072..6609b58 100644
--- a/docs/dcs_reference/apidocs/org/trafodion/dcs/http/FilterContainer.html
+++ b/docs/dcs_reference/apidocs/org/trafodion/dcs/http/FilterContainer.html
@@ -2,10 +2,10 @@
 <!-- NewPage -->
 <html lang="zh">
 <head>
-<!-- Generated by javadoc (version 1.7.0_80) on Mon Jun 04 18:53:31 CST 2018 
-->
+<!-- Generated by javadoc (version 1.7.0_80) on Thu Jun 07 15:16:56 CST 2018 
-->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
 <title>FilterContainer (Trafodion Database Connectivity Services 2.3.0 
API)</title>
-<meta name="date" content="2018-06-04">
+<meta name="date" content="2018-06-07">
 <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" 
title="Style">
 </head>
 <body>

http://git-wip-us.apache.org/repos/asf/trafodion-site/blob/2d9ea87d/docs/dcs_reference/apidocs/org/trafodion/dcs/http/HtmlQuoting.html
----------------------------------------------------------------------
diff --git a/docs/dcs_reference/apidocs/org/trafodion/dcs/http/HtmlQuoting.html 
b/docs/dcs_reference/apidocs/org/trafodion/dcs/http/HtmlQuoting.html
index b0b7d11..9ed0ce9 100644
--- a/docs/dcs_reference/apidocs/org/trafodion/dcs/http/HtmlQuoting.html
+++ b/docs/dcs_reference/apidocs/org/trafodion/dcs/http/HtmlQuoting.html
@@ -2,10 +2,10 @@
 <!-- NewPage -->
 <html lang="zh">
 <head>
-<!-- Generated by javadoc (version 1.7.0_80) on Mon Jun 04 18:53:31 CST 2018 
-->
+<!-- Generated by javadoc (version 1.7.0_80) on Thu Jun 07 15:16:56 CST 2018 
-->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
 <title>HtmlQuoting (Trafodion Database Connectivity Services 2.3.0 API)</title>
-<meta name="date" content="2018-06-04">
+<meta name="date" content="2018-06-07">
 <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" 
title="Style">
 </head>
 <body>

http://git-wip-us.apache.org/repos/asf/trafodion-site/blob/2d9ea87d/docs/dcs_reference/apidocs/org/trafodion/dcs/http/HttpServer.DummyServletFilter.RequestChecker.html
----------------------------------------------------------------------
diff --git 
a/docs/dcs_reference/apidocs/org/trafodion/dcs/http/HttpServer.DummyServletFilter.RequestChecker.html
 
b/docs/dcs_reference/apidocs/org/trafodion/dcs/http/HttpServer.DummyServletFilter.RequestChecker.html
index 5e750b1..35ef857 100644
--- 
a/docs/dcs_reference/apidocs/org/trafodion/dcs/http/HttpServer.DummyServletFilter.RequestChecker.html
+++ 
b/docs/dcs_reference/apidocs/org/trafodion/dcs/http/HttpServer.DummyServletFilter.RequestChecker.html
@@ -2,10 +2,10 @@
 <!-- NewPage -->
 <html lang="zh">
 <head>
-<!-- Generated by javadoc (version 1.7.0_80) on Mon Jun 04 18:53:31 CST 2018 
-->
+<!-- Generated by javadoc (version 1.7.0_80) on Thu Jun 07 15:16:56 CST 2018 
-->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
 <title>HttpServer.DummyServletFilter.RequestChecker (Trafodion Database 
Connectivity Services 2.3.0 API)</title>
-<meta name="date" content="2018-06-04">
+<meta name="date" content="2018-06-07">
 <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" 
title="Style">
 </head>
 <body>

http://git-wip-us.apache.org/repos/asf/trafodion-site/blob/2d9ea87d/docs/dcs_reference/apidocs/org/trafodion/dcs/http/HttpServer.DummyServletFilter.html
----------------------------------------------------------------------
diff --git 
a/docs/dcs_reference/apidocs/org/trafodion/dcs/http/HttpServer.DummyServletFilter.html
 
b/docs/dcs_reference/apidocs/org/trafodion/dcs/http/HttpServer.DummyServletFilter.html
index 4ec542d..868f6a3 100644
--- 
a/docs/dcs_reference/apidocs/org/trafodion/dcs/http/HttpServer.DummyServletFilter.html
+++ 
b/docs/dcs_reference/apidocs/org/trafodion/dcs/http/HttpServer.DummyServletFilter.html
@@ -2,10 +2,10 @@
 <!-- NewPage -->
 <html lang="zh">
 <head>
-<!-- Generated by javadoc (version 1.7.0_80) on Mon Jun 04 18:53:31 CST 2018 
-->
+<!-- Generated by javadoc (version 1.7.0_80) on Thu Jun 07 15:16:56 CST 2018 
-->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
 <title>HttpServer.DummyServletFilter (Trafodion Database Connectivity Services 
2.3.0 API)</title>
-<meta name="date" content="2018-06-04">
+<meta name="date" content="2018-06-07">
 <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" 
title="Style">
 </head>
 <body>

http://git-wip-us.apache.org/repos/asf/trafodion-site/blob/2d9ea87d/docs/dcs_reference/apidocs/org/trafodion/dcs/http/HttpServer.QuotingInputFilter.RequestQuoter.html
----------------------------------------------------------------------
diff --git 
a/docs/dcs_reference/apidocs/org/trafodion/dcs/http/HttpServer.QuotingInputFilter.RequestQuoter.html
 
b/docs/dcs_reference/apidocs/org/trafodion/dcs/http/HttpServer.QuotingInputFilter.RequestQuoter.html
index faf8d9d..dca701c 100644
--- 
a/docs/dcs_reference/apidocs/org/trafodion/dcs/http/HttpServer.QuotingInputFilter.RequestQuoter.html
+++ 
b/docs/dcs_reference/apidocs/org/trafodion/dcs/http/HttpServer.QuotingInputFilter.RequestQuoter.html
@@ -2,10 +2,10 @@
 <!-- NewPage -->
 <html lang="zh">
 <head>
-<!-- Generated by javadoc (version 1.7.0_80) on Mon Jun 04 18:53:32 CST 2018 
-->
+<!-- Generated by javadoc (version 1.7.0_80) on Thu Jun 07 15:16:56 CST 2018 
-->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
 <title>HttpServer.QuotingInputFilter.RequestQuoter (Trafodion Database 
Connectivity Services 2.3.0 API)</title>
-<meta name="date" content="2018-06-04">
+<meta name="date" content="2018-06-07">
 <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" 
title="Style">
 </head>
 <body>

Reply via email to