http://git-wip-us.apache.org/repos/asf/trafodion-site/blob/4bf06e86/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 bffab63..9f50666 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 at May 10, 2018 --> +<!-- Generated by Apache Maven Doxia at May 24, 2018 --> <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="20180510" /> + <meta name="Date-Revision-yyyymmdd" content="20180524" /> <meta http-equiv="Content-Language" content="en" /> </head> @@ -27,7 +27,7 @@ <div class="xleft"> - <span id="publishDate">Last Published: 2018-05-10</span> + <span id="publishDate">Last Published: 2018-05-24</span> | <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/4bf06e86/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 d89fed7..c2bfc7e 100644 --- a/docs/2.3.0/sql_reference/index.html +++ b/docs/2.3.0/sql_reference/index.html @@ -6008,12 +6008,17 @@ AUTOCOMMIT must be turned ON (the default) for the session. </div> <div class="listingblock"> <div class="content"> -<pre class="CodeRay highlight"><code data-lang="text">CREATE [VOLATILE | UNIQUE] INDEX index ON table +<pre class="CodeRay highlight"><code data-lang="text">CREATE [VOLATILE | UNIQUE] INDEX index-name ON table (column-name [ASC[ENDING] | DESC[ENDING]] [,column-name [ASC[ENDING] | DESC[ENDING]]]...) + [populate-option] [HBASE_OPTIONS (hbase-options-list)] [SALT LIKE TABLE] +populate-option is: + POPULATE +| NO POPULATE + hbase-options-list is: hbase-option = 'value'[, hbase-option = 'value']...</code></pre> </div> @@ -6050,7 +6055,7 @@ Multiple NULL values are treated as duplicate values for a column which can cont </div> </li> <li> -<p><code><em>index</em></code></p> +<p><code><em>index-name</em></code></p> <div class="paragraph"> <p>is an SQL identifier that specifies the simple name for the new index. You cannot qualify <em>index</em> with its schema name. Indexes have their own name space within a schema, so an index name might be the same as a table or constraint @@ -6080,6 +6085,37 @@ underlying table. For ordering (but not for other purposes), nulls are greater t </div> </li> <li> +<p><code>populate-option</code></p> +<div class="ulist"> +<ul> +<li> +<p><code>NO POPULATE</code></p> +<div class="paragraph"> +<p>specifies that the index is not to be populated when it is created.</p> +</div> +<div class="paragraph"> +<p>The indexâs partition(s) are created, but no data is written to the index, and it is marked âofflineâ. You can drop an offline index with the DROP INDEX statement. +The DROP TABLE statement also drops offline indexes of the specified table. +DML statements have no effect on offline indexes.</p> +</div> +<div class="paragraph"> +<p>If an index is created with the intention of using it for a constraint, it must be populated before creating the constraint. +You can populate an offline index and remove its offline designation by using the POPULATE INDEX utility.</p> +</div> +</li> +<li> +<p><code>POPULATE</code></p> +<div class="paragraph"> +<p>specifies that the index is to be created and populated.</p> +</div> +<div class="paragraph"> +<p>The default is <code>POPULATE</code>.</p> +</div> +</li> +</ul> +</div> +</li> +<li> <p><code>HBASE_OPTIONS (<em>hbase-option</em> = '<em>value</em>'[, <em>hbase-option</em> = '<em>value</em>']…)</code></p> <div class="paragraph"> <p>a list of HBase options to set for the index. These options are applied independently of any HBase options set for @@ -6436,6 +6472,16 @@ SQL>create unique index idx_t25 on t25(b); </div> </div> </li> +<li> +<p>This exmaple creates the index <em>index_test</em> which is not to be populated on the column <em>c1</em> of the table <em>test</em>.</p> +<div class="listingblock"> +<div class="content"> +<pre class="CodeRay highlight"><code data-lang="text">SQL>create index index_test on test (c1) no populate; + +--- SQL operation complete.</code></pre> +</div> +</div> +</li> </ul> </div> <div style="page-break-after: always;"></div> @@ -6496,10 +6542,19 @@ and <a href="#database_object_names">database object names</a>.</p> <div class="paragraph"> <p>specifies the full path of a deployed library file, which either an SPJ’s jar file or a UDF’s library file.</p> </div> -<div class="paragraph"> -<p>note: make sure to upload the library file to the trafodion cluster and then copy the library file to the +<div class="admonitionblock note"> +<table> +<tr> +<td class="icon"> +<i class="fa icon-note" title="Note"></i> +</td> +<td class="content"> +Make sure to upload the library file to the trafodion cluster and then copy the library file to the same directory on all the nodes in the cluster before running the create library statement. otherwise, you -will see an error message indicating that the jar or dll file was not found.</p> +will see an error message indicating that the jar or dll file was not found. +</td> +</tr> +</table> </div> </li> <li> @@ -21094,7 +21149,7 @@ incrementally.</p> </div> </li> <li> -<p><code>PERIODIC <em>size</em> ROWS EVERY <em>period</em> ROW</code></p> +<p><code>PERIODIC <em>size</em> ROWS EVERY <em>period</em> ROWS</code></p> <div class="paragraph"> <p>directs Trafodion SQL to choose the first <em>size</em> number of rows from each <em>period</em> of rows. The value <em>size</em> must be an integer that is @@ -48733,7 +48788,7 @@ or 256 bytes of UTF8 text, whichever is less.</p></td> <div id="footer"> <div id="footer-text"> Version 2.3.0<br> -Last updated 2018-01-03 21:27:09 UTC +Last updated 2018-05-10 19:35:17 UTC </div> </div> <script> http://git-wip-us.apache.org/repos/asf/trafodion-site/blob/4bf06e86/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 80f8346..dc1d61d 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 at May 10, 2018 --> +<!-- Generated by Apache Maven Doxia at May 24, 2018 --> <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="20180510" /> + <meta name="Date-Revision-yyyymmdd" content="20180524" /> <meta http-equiv="Content-Language" content="en" /> </head> @@ -27,7 +27,7 @@ <div class="xleft"> - <span id="publishDate">Last Published: 2018-05-10</span> + <span id="publishDate">Last Published: 2018-05-24</span> | <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/4bf06e86/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 2d22828..3d862d7 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 at May 10, 2018 --> +<!-- Generated by Apache Maven Doxia at May 24, 2018 --> <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="20180510" /> + <meta name="Date-Revision-yyyymmdd" content="20180524" /> <meta http-equiv="Content-Language" content="en" /> </head> @@ -27,7 +27,7 @@ <div class="xleft"> - <span id="publishDate">Last Published: 2018-05-10</span> + <span id="publishDate">Last Published: 2018-05-24</span> | <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/4bf06e86/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 77373cc..183a2da 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 at May 10, 2018 --> +<!-- Generated by Apache Maven Doxia at May 24, 2018 --> <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="20180510" /> + <meta name="Date-Revision-yyyymmdd" content="20180524" /> <meta http-equiv="Content-Language" content="en" /> </head> @@ -27,7 +27,7 @@ <div class="xleft"> - <span id="publishDate">Last Published: 2018-05-10</span> + <span id="publishDate">Last Published: 2018-05-24</span> | <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/4bf06e86/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 0092574..5e43c57 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 at May 10, 2018 --> +<!-- Generated by Apache Maven Doxia at May 24, 2018 --> <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="20180510" /> + <meta name="Date-Revision-yyyymmdd" content="20180524" /> <meta http-equiv="Content-Language" content="en" /> </head> @@ -27,7 +27,7 @@ <div class="xleft"> - <span id="publishDate">Last Published: 2018-05-10</span> + <span id="publishDate">Last Published: 2018-05-24</span> | <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/4bf06e86/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 3a61e14..c460237 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 at May 10, 2018 --> +<!-- Generated by Apache Maven Doxia at May 24, 2018 --> <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="20180510" /> + <meta name="Date-Revision-yyyymmdd" content="20180524" /> <meta http-equiv="Content-Language" content="en" /> </head> @@ -27,7 +27,7 @@ <div class="xleft"> - <span id="publishDate">Last Published: 2018-05-10</span> + <span id="publishDate">Last Published: 2018-05-24</span> | <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/4bf06e86/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 d0576bd..ab30494 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 at May 10, 2018 --> +<!-- Generated by Apache Maven Doxia at May 24, 2018 --> <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="20180510" /> + <meta name="Date-Revision-yyyymmdd" content="20180524" /> <meta http-equiv="Content-Language" content="en" /> </head> @@ -27,7 +27,7 @@ <div class="xleft"> - <span id="publishDate">Last Published: 2018-05-10</span> + <span id="publishDate">Last Published: 2018-05-24</span> | <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/4bf06e86/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 04fd739..67bfd08 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 at May 10, 2018 --> +<!-- Generated by Apache Maven Doxia at May 24, 2018 --> <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="20180510" /> + <meta name="Date-Revision-yyyymmdd" content="20180524" /> <meta http-equiv="Content-Language" content="en" /> </head> @@ -27,7 +27,7 @@ <div class="xleft"> - <span id="publishDate">Last Published: 2018-05-10</span> + <span id="publishDate">Last Published: 2018-05-24</span> | <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/4bf06e86/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 c4c595c..bb98b72 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 at May 10, 2018 --> +<!-- Generated by Apache Maven Doxia at May 24, 2018 --> <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="20180510" /> + <meta name="Date-Revision-yyyymmdd" content="20180524" /> <meta http-equiv="Content-Language" content="en" /> </head> @@ -27,7 +27,7 @@ <div class="xleft"> - <span id="publishDate">Last Published: 2018-05-10</span> + <span id="publishDate">Last Published: 2018-05-24</span> | <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/4bf06e86/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 ac23e52..a6fa0bf 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/4bf06e86/docs/client_install/dependencies.html ---------------------------------------------------------------------- diff --git a/docs/client_install/dependencies.html b/docs/client_install/dependencies.html index b813c8c..97bf524 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 at May 10, 2018 --> +<!-- Generated by Apache Maven Doxia at May 24, 2018 --> <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="20180510" /> + <meta name="Date-Revision-yyyymmdd" content="20180524" /> <meta http-equiv="Content-Language" content="en" /> </head> @@ -27,7 +27,7 @@ <div class="xleft"> - <span id="publishDate">Last Published: 2018-05-10</span> + <span id="publishDate">Last Published: 2018-05-24</span> | <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/4bf06e86/docs/client_install/index.html ---------------------------------------------------------------------- diff --git a/docs/client_install/index.html b/docs/client_install/index.html index c04321c..a8e4c9d 100644 --- a/docs/client_install/index.html +++ b/docs/client_install/index.html @@ -4937,7 +4937,7 @@ check your PATH variable settings again.</p> <div id="footer"> <div id="footer-text"> Version 2.3.0<br> -Last updated 2018-01-03 21:27:09 UTC +Last updated 2018-05-10 19:35:17 UTC </div> </div> <script> http://git-wip-us.apache.org/repos/asf/trafodion-site/blob/4bf06e86/docs/client_install/integration.html ---------------------------------------------------------------------- diff --git a/docs/client_install/integration.html b/docs/client_install/integration.html index f0b688f..49a26ea 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 at May 10, 2018 --> +<!-- Generated by Apache Maven Doxia at May 24, 2018 --> <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="20180510" /> + <meta name="Date-Revision-yyyymmdd" content="20180524" /> <meta http-equiv="Content-Language" content="en" /> </head> @@ -27,7 +27,7 @@ <div class="xleft"> - <span id="publishDate">Last Published: 2018-05-10</span> + <span id="publishDate">Last Published: 2018-05-24</span> | <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/4bf06e86/docs/client_install/issue-tracking.html ---------------------------------------------------------------------- diff --git a/docs/client_install/issue-tracking.html b/docs/client_install/issue-tracking.html index 4c25f55..935c654 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 at May 10, 2018 --> +<!-- Generated by Apache Maven Doxia at May 24, 2018 --> <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="20180510" /> + <meta name="Date-Revision-yyyymmdd" content="20180524" /> <meta http-equiv="Content-Language" content="en" /> </head> @@ -27,7 +27,7 @@ <div class="xleft"> - <span id="publishDate">Last Published: 2018-05-10</span> + <span id="publishDate">Last Published: 2018-05-24</span> | <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/4bf06e86/docs/client_install/license.html ---------------------------------------------------------------------- diff --git a/docs/client_install/license.html b/docs/client_install/license.html index 105559b..5f87686 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 at May 10, 2018 --> +<!-- Generated by Apache Maven Doxia at May 24, 2018 --> <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="20180510" /> + <meta name="Date-Revision-yyyymmdd" content="20180524" /> <meta http-equiv="Content-Language" content="en" /> </head> @@ -27,7 +27,7 @@ <div class="xleft"> - <span id="publishDate">Last Published: 2018-05-10</span> + <span id="publishDate">Last Published: 2018-05-24</span> | <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/4bf06e86/docs/client_install/mail-lists.html ---------------------------------------------------------------------- diff --git a/docs/client_install/mail-lists.html b/docs/client_install/mail-lists.html index a95458b..6989f1e 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 at May 10, 2018 --> +<!-- Generated by Apache Maven Doxia at May 24, 2018 --> <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="20180510" /> + <meta name="Date-Revision-yyyymmdd" content="20180524" /> <meta http-equiv="Content-Language" content="en" /> </head> @@ -27,7 +27,7 @@ <div class="xleft"> - <span id="publishDate">Last Published: 2018-05-10</span> + <span id="publishDate">Last Published: 2018-05-24</span> | <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/4bf06e86/docs/client_install/project-info.html ---------------------------------------------------------------------- diff --git a/docs/client_install/project-info.html b/docs/client_install/project-info.html index 0478ab9..78be5ae 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 at May 10, 2018 --> +<!-- Generated by Apache Maven Doxia at May 24, 2018 --> <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="20180510" /> + <meta name="Date-Revision-yyyymmdd" content="20180524" /> <meta http-equiv="Content-Language" content="en" /> </head> @@ -27,7 +27,7 @@ <div class="xleft"> - <span id="publishDate">Last Published: 2018-05-10</span> + <span id="publishDate">Last Published: 2018-05-24</span> | <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/4bf06e86/docs/client_install/project-summary.html ---------------------------------------------------------------------- diff --git a/docs/client_install/project-summary.html b/docs/client_install/project-summary.html index b2aaf98..6001dcd 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 at May 10, 2018 --> +<!-- Generated by Apache Maven Doxia at May 24, 2018 --> <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="20180510" /> + <meta name="Date-Revision-yyyymmdd" content="20180524" /> <meta http-equiv="Content-Language" content="en" /> </head> @@ -27,7 +27,7 @@ <div class="xleft"> - <span id="publishDate">Last Published: 2018-05-10</span> + <span id="publishDate">Last Published: 2018-05-24</span> | <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/4bf06e86/docs/client_install/source-repository.html ---------------------------------------------------------------------- diff --git a/docs/client_install/source-repository.html b/docs/client_install/source-repository.html index 58c475b..311a6bc 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 at May 10, 2018 --> +<!-- Generated by Apache Maven Doxia at May 24, 2018 --> <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="20180510" /> + <meta name="Date-Revision-yyyymmdd" content="20180524" /> <meta http-equiv="Content-Language" content="en" /> </head> @@ -27,7 +27,7 @@ <div class="xleft"> - <span id="publishDate">Last Published: 2018-05-10</span> + <span id="publishDate">Last Published: 2018-05-24</span> | <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/4bf06e86/docs/client_install/team-list.html ---------------------------------------------------------------------- diff --git a/docs/client_install/team-list.html b/docs/client_install/team-list.html index 21d12b4..3989a22 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 at May 10, 2018 --> +<!-- Generated by Apache Maven Doxia at May 24, 2018 --> <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="20180510" /> + <meta name="Date-Revision-yyyymmdd" content="20180524" /> <meta http-equiv="Content-Language" content="en" /> </head> @@ -27,7 +27,7 @@ <div class="xleft"> - <span id="publishDate">Last Published: 2018-05-10</span> + <span id="publishDate">Last Published: 2018-05-24</span> | <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/4bf06e86/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 025fd25..5365124 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/4bf06e86/docs/command_interface/dependencies.html ---------------------------------------------------------------------- diff --git a/docs/command_interface/dependencies.html b/docs/command_interface/dependencies.html index f3b8eab..8faee19 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 at May 10, 2018 --> +<!-- Generated by Apache Maven Doxia at May 24, 2018 --> <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="20180510" /> + <meta name="Date-Revision-yyyymmdd" content="20180524" /> <meta http-equiv="Content-Language" content="en" /> </head> @@ -27,7 +27,7 @@ <div class="xleft"> - <span id="publishDate">Last Published: 2018-05-10</span> + <span id="publishDate">Last Published: 2018-05-24</span> | <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/4bf06e86/docs/command_interface/index.html ---------------------------------------------------------------------- diff --git a/docs/command_interface/index.html b/docs/command_interface/index.html index 5e90810..f6e3171 100644 --- a/docs/command_interface/index.html +++ b/docs/command_interface/index.html @@ -10852,7 +10852,7 @@ Trafodion Command Interface : TrafCI_Build_40646</code></pre> <div id="footer"> <div id="footer-text"> Version 2.3.0<br> -Last updated 2018-01-03 21:27:09 UTC +Last updated 2018-05-10 19:35:17 UTC </div> </div> <script> http://git-wip-us.apache.org/repos/asf/trafodion-site/blob/4bf06e86/docs/command_interface/integration.html ---------------------------------------------------------------------- diff --git a/docs/command_interface/integration.html b/docs/command_interface/integration.html index 0479dfb..ab86421 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 at May 10, 2018 --> +<!-- Generated by Apache Maven Doxia at May 24, 2018 --> <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="20180510" /> + <meta name="Date-Revision-yyyymmdd" content="20180524" /> <meta http-equiv="Content-Language" content="en" /> </head> @@ -27,7 +27,7 @@ <div class="xleft"> - <span id="publishDate">Last Published: 2018-05-10</span> + <span id="publishDate">Last Published: 2018-05-24</span> | <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/4bf06e86/docs/command_interface/issue-tracking.html ---------------------------------------------------------------------- diff --git a/docs/command_interface/issue-tracking.html b/docs/command_interface/issue-tracking.html index 9f946b4..004d58c 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 at May 10, 2018 --> +<!-- Generated by Apache Maven Doxia at May 24, 2018 --> <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="20180510" /> + <meta name="Date-Revision-yyyymmdd" content="20180524" /> <meta http-equiv="Content-Language" content="en" /> </head> @@ -27,7 +27,7 @@ <div class="xleft"> - <span id="publishDate">Last Published: 2018-05-10</span> + <span id="publishDate">Last Published: 2018-05-24</span> | <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/4bf06e86/docs/command_interface/license.html ---------------------------------------------------------------------- diff --git a/docs/command_interface/license.html b/docs/command_interface/license.html index f3dd36d..9b7386d 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 at May 10, 2018 --> +<!-- Generated by Apache Maven Doxia at May 24, 2018 --> <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="20180510" /> + <meta name="Date-Revision-yyyymmdd" content="20180524" /> <meta http-equiv="Content-Language" content="en" /> </head> @@ -27,7 +27,7 @@ <div class="xleft"> - <span id="publishDate">Last Published: 2018-05-10</span> + <span id="publishDate">Last Published: 2018-05-24</span> | <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/4bf06e86/docs/command_interface/mail-lists.html ---------------------------------------------------------------------- diff --git a/docs/command_interface/mail-lists.html b/docs/command_interface/mail-lists.html index 7217a44..48f15b9 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 at May 10, 2018 --> +<!-- Generated by Apache Maven Doxia at May 24, 2018 --> <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="20180510" /> + <meta name="Date-Revision-yyyymmdd" content="20180524" /> <meta http-equiv="Content-Language" content="en" /> </head> @@ -27,7 +27,7 @@ <div class="xleft"> - <span id="publishDate">Last Published: 2018-05-10</span> + <span id="publishDate">Last Published: 2018-05-24</span> | <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/4bf06e86/docs/command_interface/project-info.html ---------------------------------------------------------------------- diff --git a/docs/command_interface/project-info.html b/docs/command_interface/project-info.html index 938a754..1b6139a 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 at May 10, 2018 --> +<!-- Generated by Apache Maven Doxia at May 24, 2018 --> <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="20180510" /> + <meta name="Date-Revision-yyyymmdd" content="20180524" /> <meta http-equiv="Content-Language" content="en" /> </head> @@ -27,7 +27,7 @@ <div class="xleft"> - <span id="publishDate">Last Published: 2018-05-10</span> + <span id="publishDate">Last Published: 2018-05-24</span> | <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/4bf06e86/docs/command_interface/project-summary.html ---------------------------------------------------------------------- diff --git a/docs/command_interface/project-summary.html b/docs/command_interface/project-summary.html index ad0eb92..0ef1b2a 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 at May 10, 2018 --> +<!-- Generated by Apache Maven Doxia at May 24, 2018 --> <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="20180510" /> + <meta name="Date-Revision-yyyymmdd" content="20180524" /> <meta http-equiv="Content-Language" content="en" /> </head> @@ -27,7 +27,7 @@ <div class="xleft"> - <span id="publishDate">Last Published: 2018-05-10</span> + <span id="publishDate">Last Published: 2018-05-24</span> | <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/4bf06e86/docs/command_interface/source-repository.html ---------------------------------------------------------------------- diff --git a/docs/command_interface/source-repository.html b/docs/command_interface/source-repository.html index 0741d68..7bf87f6 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 at May 10, 2018 --> +<!-- Generated by Apache Maven Doxia at May 24, 2018 --> <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="20180510" /> + <meta name="Date-Revision-yyyymmdd" content="20180524" /> <meta http-equiv="Content-Language" content="en" /> </head> @@ -27,7 +27,7 @@ <div class="xleft"> - <span id="publishDate">Last Published: 2018-05-10</span> + <span id="publishDate">Last Published: 2018-05-24</span> | <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/4bf06e86/docs/command_interface/team-list.html ---------------------------------------------------------------------- diff --git a/docs/command_interface/team-list.html b/docs/command_interface/team-list.html index 8826265..5ad73a9 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 at May 10, 2018 --> +<!-- Generated by Apache Maven Doxia at May 24, 2018 --> <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="20180510" /> + <meta name="Date-Revision-yyyymmdd" content="20180524" /> <meta http-equiv="Content-Language" content="en" /> </head> @@ -27,7 +27,7 @@ <div class="xleft"> - <span id="publishDate">Last Published: 2018-05-10</span> + <span id="publishDate">Last Published: 2018-05-24</span> | <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/4bf06e86/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 e67a2ec..864bda3 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/4bf06e86/docs/cqd_reference/dependencies.html ---------------------------------------------------------------------- diff --git a/docs/cqd_reference/dependencies.html b/docs/cqd_reference/dependencies.html index 7e29047..eb005b0 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 at May 10, 2018 --> +<!-- Generated by Apache Maven Doxia at May 24, 2018 --> <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="20180510" /> + <meta name="Date-Revision-yyyymmdd" content="20180524" /> <meta http-equiv="Content-Language" content="en" /> </head> @@ -27,7 +27,7 @@ <div class="xleft"> - <span id="publishDate">Last Published: 2018-05-10</span> + <span id="publishDate">Last Published: 2018-05-24</span> | <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/4bf06e86/docs/cqd_reference/index.html ---------------------------------------------------------------------- diff --git a/docs/cqd_reference/index.html b/docs/cqd_reference/index.html index 6565c03..38e303c 100644 --- a/docs/cqd_reference/index.html +++ b/docs/cqd_reference/index.html @@ -4981,7 +4981,7 @@ Default: <strong>'0'</strong>.</p></td> <div id="footer"> <div id="footer-text"> Version 2.3.0<br> -Last updated 2018-01-03 21:27:09 UTC +Last updated 2018-05-10 19:35:17 UTC </div> </div> <script> http://git-wip-us.apache.org/repos/asf/trafodion-site/blob/4bf06e86/docs/cqd_reference/integration.html ---------------------------------------------------------------------- diff --git a/docs/cqd_reference/integration.html b/docs/cqd_reference/integration.html index edf53d9..d3078bf 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 at May 10, 2018 --> +<!-- Generated by Apache Maven Doxia at May 24, 2018 --> <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="20180510" /> + <meta name="Date-Revision-yyyymmdd" content="20180524" /> <meta http-equiv="Content-Language" content="en" /> </head> @@ -27,7 +27,7 @@ <div class="xleft"> - <span id="publishDate">Last Published: 2018-05-10</span> + <span id="publishDate">Last Published: 2018-05-24</span> | <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/4bf06e86/docs/cqd_reference/issue-tracking.html ---------------------------------------------------------------------- diff --git a/docs/cqd_reference/issue-tracking.html b/docs/cqd_reference/issue-tracking.html index eb8f302..3086e86 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 at May 10, 2018 --> +<!-- Generated by Apache Maven Doxia at May 24, 2018 --> <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="20180510" /> + <meta name="Date-Revision-yyyymmdd" content="20180524" /> <meta http-equiv="Content-Language" content="en" /> </head> @@ -27,7 +27,7 @@ <div class="xleft"> - <span id="publishDate">Last Published: 2018-05-10</span> + <span id="publishDate">Last Published: 2018-05-24</span> | <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/4bf06e86/docs/cqd_reference/license.html ---------------------------------------------------------------------- diff --git a/docs/cqd_reference/license.html b/docs/cqd_reference/license.html index 1e5a95e..59bc1d9 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 at May 10, 2018 --> +<!-- Generated by Apache Maven Doxia at May 24, 2018 --> <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="20180510" /> + <meta name="Date-Revision-yyyymmdd" content="20180524" /> <meta http-equiv="Content-Language" content="en" /> </head> @@ -27,7 +27,7 @@ <div class="xleft"> - <span id="publishDate">Last Published: 2018-05-10</span> + <span id="publishDate">Last Published: 2018-05-24</span> | <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/4bf06e86/docs/cqd_reference/mail-lists.html ---------------------------------------------------------------------- diff --git a/docs/cqd_reference/mail-lists.html b/docs/cqd_reference/mail-lists.html index bf9859e..562a997 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 at May 10, 2018 --> +<!-- Generated by Apache Maven Doxia at May 24, 2018 --> <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="20180510" /> + <meta name="Date-Revision-yyyymmdd" content="20180524" /> <meta http-equiv="Content-Language" content="en" /> </head> @@ -27,7 +27,7 @@ <div class="xleft"> - <span id="publishDate">Last Published: 2018-05-10</span> + <span id="publishDate">Last Published: 2018-05-24</span> | <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/4bf06e86/docs/cqd_reference/project-info.html ---------------------------------------------------------------------- diff --git a/docs/cqd_reference/project-info.html b/docs/cqd_reference/project-info.html index fc71923..76f4d7c 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 at May 10, 2018 --> +<!-- Generated by Apache Maven Doxia at May 24, 2018 --> <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="20180510" /> + <meta name="Date-Revision-yyyymmdd" content="20180524" /> <meta http-equiv="Content-Language" content="en" /> </head> @@ -27,7 +27,7 @@ <div class="xleft"> - <span id="publishDate">Last Published: 2018-05-10</span> + <span id="publishDate">Last Published: 2018-05-24</span> | <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/4bf06e86/docs/cqd_reference/project-summary.html ---------------------------------------------------------------------- diff --git a/docs/cqd_reference/project-summary.html b/docs/cqd_reference/project-summary.html index 9e6c908..c0bc380 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 at May 10, 2018 --> +<!-- Generated by Apache Maven Doxia at May 24, 2018 --> <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="20180510" /> + <meta name="Date-Revision-yyyymmdd" content="20180524" /> <meta http-equiv="Content-Language" content="en" /> </head> @@ -27,7 +27,7 @@ <div class="xleft"> - <span id="publishDate">Last Published: 2018-05-10</span> + <span id="publishDate">Last Published: 2018-05-24</span> | <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/4bf06e86/docs/cqd_reference/source-repository.html ---------------------------------------------------------------------- diff --git a/docs/cqd_reference/source-repository.html b/docs/cqd_reference/source-repository.html index 21ea0ec..eedea85 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 at May 10, 2018 --> +<!-- Generated by Apache Maven Doxia at May 24, 2018 --> <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="20180510" /> + <meta name="Date-Revision-yyyymmdd" content="20180524" /> <meta http-equiv="Content-Language" content="en" /> </head> @@ -27,7 +27,7 @@ <div class="xleft"> - <span id="publishDate">Last Published: 2018-05-10</span> + <span id="publishDate">Last Published: 2018-05-24</span> | <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/4bf06e86/docs/cqd_reference/team-list.html ---------------------------------------------------------------------- diff --git a/docs/cqd_reference/team-list.html b/docs/cqd_reference/team-list.html index 14ff977..27aebe4 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 at May 10, 2018 --> +<!-- Generated by Apache Maven Doxia at May 24, 2018 --> <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="20180510" /> + <meta name="Date-Revision-yyyymmdd" content="20180524" /> <meta http-equiv="Content-Language" content="en" /> </head> @@ -27,7 +27,7 @@ <div class="xleft"> - <span id="publishDate">Last Published: 2018-05-10</span> + <span id="publishDate">Last Published: 2018-05-24</span> | <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/4bf06e86/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 ff01fed..743833d 100644 --- a/docs/dcs_reference/apidocs/allclasses-frame.html +++ b/docs/dcs_reference/apidocs/allclasses-frame.html @@ -2,10 +2,10 @@ <!-- NewPage --> <html lang="en"> <head> -<!-- Generated by javadoc (1.7.0_161) on Thu May 10 18:10:22 UTC 2018 --> +<!-- Generated by javadoc (1.7.0_161) on Thu May 24 15:33:41 UTC 2018 --> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <title>All Classes (Trafodion Database Connectivity Services 2.3.0 API)</title> -<meta name="date" content="2018-05-10"> +<meta name="date" content="2018-05-24"> <link rel="stylesheet" type="text/css" href="stylesheet.css" title="Style"> </head> <body> http://git-wip-us.apache.org/repos/asf/trafodion-site/blob/4bf06e86/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 cbaeaac..be080fb 100644 --- a/docs/dcs_reference/apidocs/allclasses-noframe.html +++ b/docs/dcs_reference/apidocs/allclasses-noframe.html @@ -2,10 +2,10 @@ <!-- NewPage --> <html lang="en"> <head> -<!-- Generated by javadoc (1.7.0_161) on Thu May 10 18:10:22 UTC 2018 --> +<!-- Generated by javadoc (1.7.0_161) on Thu May 24 15:33:41 UTC 2018 --> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <title>All Classes (Trafodion Database Connectivity Services 2.3.0 API)</title> -<meta name="date" content="2018-05-10"> +<meta name="date" content="2018-05-24"> <link rel="stylesheet" type="text/css" href="stylesheet.css" title="Style"> </head> <body> http://git-wip-us.apache.org/repos/asf/trafodion-site/blob/4bf06e86/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 9ac64cf..6b56122 100644 --- a/docs/dcs_reference/apidocs/constant-values.html +++ b/docs/dcs_reference/apidocs/constant-values.html @@ -2,10 +2,10 @@ <!-- NewPage --> <html lang="en"> <head> -<!-- Generated by javadoc (1.7.0_161) on Thu May 10 18:10:21 UTC 2018 --> +<!-- Generated by javadoc (1.7.0_161) on Thu May 24 15:33:41 UTC 2018 --> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <title>Constant Field Values (Trafodion Database Connectivity Services 2.3.0 API)</title> -<meta name="date" content="2018-05-10"> +<meta name="date" content="2018-05-24"> <link rel="stylesheet" type="text/css" href="stylesheet.css" title="Style"> </head> <body> http://git-wip-us.apache.org/repos/asf/trafodion-site/blob/4bf06e86/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 76e0370..d103508 100644 --- a/docs/dcs_reference/apidocs/deprecated-list.html +++ b/docs/dcs_reference/apidocs/deprecated-list.html @@ -2,10 +2,10 @@ <!-- NewPage --> <html lang="en"> <head> -<!-- Generated by javadoc (1.7.0_161) on Thu May 10 18:10:22 UTC 2018 --> +<!-- Generated by javadoc (1.7.0_161) on Thu May 24 15:33:41 UTC 2018 --> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <title>Deprecated List (Trafodion Database Connectivity Services 2.3.0 API)</title> -<meta name="date" content="2018-05-10"> +<meta name="date" content="2018-05-24"> <link rel="stylesheet" type="text/css" href="stylesheet.css" title="Style"> </head> <body> http://git-wip-us.apache.org/repos/asf/trafodion-site/blob/4bf06e86/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 5c294f5..8a80b5c 100644 --- a/docs/dcs_reference/apidocs/help-doc.html +++ b/docs/dcs_reference/apidocs/help-doc.html @@ -2,10 +2,10 @@ <!-- NewPage --> <html lang="en"> <head> -<!-- Generated by javadoc (1.7.0_161) on Thu May 10 18:10:22 UTC 2018 --> +<!-- Generated by javadoc (1.7.0_161) on Thu May 24 15:33:41 UTC 2018 --> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <title>API Help (Trafodion Database Connectivity Services 2.3.0 API)</title> -<meta name="date" content="2018-05-10"> +<meta name="date" content="2018-05-24"> <link rel="stylesheet" type="text/css" href="stylesheet.css" title="Style"> </head> <body> http://git-wip-us.apache.org/repos/asf/trafodion-site/blob/4bf06e86/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 6bb9f9a..5bedcc5 100644 --- a/docs/dcs_reference/apidocs/index-all.html +++ b/docs/dcs_reference/apidocs/index-all.html @@ -2,10 +2,10 @@ <!-- NewPage --> <html lang="en"> <head> -<!-- Generated by javadoc (1.7.0_161) on Thu May 10 18:10:22 UTC 2018 --> +<!-- Generated by javadoc (1.7.0_161) on Thu May 24 15:33:41 UTC 2018 --> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <title>Index (Trafodion Database Connectivity Services 2.3.0 API)</title> -<meta name="date" content="2018-05-10"> +<meta name="date" content="2018-05-24"> <link rel="stylesheet" type="text/css" href="./stylesheet.css" title="Style"> </head> <body> http://git-wip-us.apache.org/repos/asf/trafodion-site/blob/4bf06e86/docs/dcs_reference/apidocs/index.html ---------------------------------------------------------------------- diff --git a/docs/dcs_reference/apidocs/index.html b/docs/dcs_reference/apidocs/index.html index 454d02d..242b760 100644 --- a/docs/dcs_reference/apidocs/index.html +++ b/docs/dcs_reference/apidocs/index.html @@ -2,7 +2,7 @@ <!-- NewPage --> <html lang="en"> <head> -<!-- Generated by javadoc (1.7.0_161) on Thu May 10 18:10:22 UTC 2018 --> +<!-- Generated by javadoc (1.7.0_161) on Thu May 24 15:33:41 UTC 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/4bf06e86/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 78a6c7b..4ed0842 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="en"> <head> -<!-- Generated by javadoc (1.7.0_161) on Thu May 10 18:10:19 UTC 2018 --> +<!-- Generated by javadoc (1.7.0_161) on Thu May 24 15:33:39 UTC 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-05-10"> +<meta name="date" content="2018-05-24"> <link rel="stylesheet" type="text/css" href="../../../stylesheet.css" title="Style"> </head> <body> http://git-wip-us.apache.org/repos/asf/trafodion-site/blob/4bf06e86/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 5dea8ca..bb1aa97 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="en"> <head> -<!-- Generated by javadoc (1.7.0_161) on Thu May 10 18:10:19 UTC 2018 --> +<!-- Generated by javadoc (1.7.0_161) on Thu May 24 15:33:39 UTC 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-05-10"> +<meta name="date" content="2018-05-24"> <link rel="stylesheet" type="text/css" href="../../../stylesheet.css" title="Style"> </head> <body> http://git-wip-us.apache.org/repos/asf/trafodion-site/blob/4bf06e86/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 3148618..9667aa9 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="en"> <head> -<!-- Generated by javadoc (1.7.0_161) on Thu May 10 18:10:22 UTC 2018 --> +<!-- Generated by javadoc (1.7.0_161) on Thu May 24 15:33:41 UTC 2018 --> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <title>Uses of Class org.trafodion.dcs.Constants (Trafodion Database Connectivity Services 2.3.0 API)</title> -<meta name="date" content="2018-05-10"> +<meta name="date" content="2018-05-24"> <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style"> </head> <body> http://git-wip-us.apache.org/repos/asf/trafodion-site/blob/4bf06e86/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 507cf2b..041e969 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="en"> <head> -<!-- Generated by javadoc (1.7.0_161) on Thu May 10 18:10:22 UTC 2018 --> +<!-- Generated by javadoc (1.7.0_161) on Thu May 24 15:33:41 UTC 2018 --> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <title>Uses of Class org.trafodion.dcs.VersionAnnotation (Trafodion Database Connectivity Services 2.3.0 API)</title> -<meta name="date" content="2018-05-10"> +<meta name="date" content="2018-05-24"> <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style"> </head> <body> http://git-wip-us.apache.org/repos/asf/trafodion-site/blob/4bf06e86/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 3862ce6..7df1785 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="en"> <head> -<!-- Generated by javadoc (1.7.0_161) on Thu May 10 18:10:21 UTC 2018 --> +<!-- Generated by javadoc (1.7.0_161) on Thu May 24 15:33:40 UTC 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-05-10"> +<meta name="date" content="2018-05-24"> <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style"> </head> <body> http://git-wip-us.apache.org/repos/asf/trafodion-site/blob/4bf06e86/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 d622646..29d4bc7 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="en"> <head> -<!-- Generated by javadoc (1.7.0_161) on Thu May 10 18:10:21 UTC 2018 --> +<!-- Generated by javadoc (1.7.0_161) on Thu May 24 15:33:40 UTC 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-05-10"> +<meta name="date" content="2018-05-24"> <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style"> </head> <body> http://git-wip-us.apache.org/repos/asf/trafodion-site/blob/4bf06e86/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 39c7edc..21e2d57 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="en"> <head> -<!-- Generated by javadoc (1.7.0_161) on Thu May 10 18:10:21 UTC 2018 --> +<!-- Generated by javadoc (1.7.0_161) on Thu May 24 15:33:40 UTC 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-05-10"> +<meta name="date" content="2018-05-24"> <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style"> </head> <body> http://git-wip-us.apache.org/repos/asf/trafodion-site/blob/4bf06e86/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 2284934..41c041d 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="en"> <head> -<!-- Generated by javadoc (1.7.0_161) on Thu May 10 18:10:21 UTC 2018 --> +<!-- Generated by javadoc (1.7.0_161) on Thu May 24 15:33:40 UTC 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-05-10"> +<meta name="date" content="2018-05-24"> <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style"> </head> <body> http://git-wip-us.apache.org/repos/asf/trafodion-site/blob/4bf06e86/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 28ce1c2..71c996d 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="en"> <head> -<!-- Generated by javadoc (1.7.0_161) on Thu May 10 18:10:21 UTC 2018 --> +<!-- Generated by javadoc (1.7.0_161) on Thu May 24 15:33:40 UTC 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-05-10"> +<meta name="date" content="2018-05-24"> <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style"> </head> <body> http://git-wip-us.apache.org/repos/asf/trafodion-site/blob/4bf06e86/docs/dcs_reference/apidocs/org/trafodion/dcs/http/HttpServer.QuotingInputFilter.html ---------------------------------------------------------------------- diff --git a/docs/dcs_reference/apidocs/org/trafodion/dcs/http/HttpServer.QuotingInputFilter.html b/docs/dcs_reference/apidocs/org/trafodion/dcs/http/HttpServer.QuotingInputFilter.html index dd56345..261da2c 100644 --- a/docs/dcs_reference/apidocs/org/trafodion/dcs/http/HttpServer.QuotingInputFilter.html +++ b/docs/dcs_reference/apidocs/org/trafodion/dcs/http/HttpServer.QuotingInputFilter.html @@ -2,10 +2,10 @@ <!-- NewPage --> <html lang="en"> <head> -<!-- Generated by javadoc (1.7.0_161) on Thu May 10 18:10:21 UTC 2018 --> +<!-- Generated by javadoc (1.7.0_161) on Thu May 24 15:33:40 UTC 2018 --> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <title>HttpServer.QuotingInputFilter (Trafodion Database Connectivity Services 2.3.0 API)</title> -<meta name="date" content="2018-05-10"> +<meta name="date" content="2018-05-24"> <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style"> </head> <body> http://git-wip-us.apache.org/repos/asf/trafodion-site/blob/4bf06e86/docs/dcs_reference/apidocs/org/trafodion/dcs/http/HttpServer.StackServlet.html ---------------------------------------------------------------------- diff --git a/docs/dcs_reference/apidocs/org/trafodion/dcs/http/HttpServer.StackServlet.html b/docs/dcs_reference/apidocs/org/trafodion/dcs/http/HttpServer.StackServlet.html index da84661..2e5d093 100644 --- a/docs/dcs_reference/apidocs/org/trafodion/dcs/http/HttpServer.StackServlet.html +++ b/docs/dcs_reference/apidocs/org/trafodion/dcs/http/HttpServer.StackServlet.html @@ -2,10 +2,10 @@ <!-- NewPage --> <html lang="en"> <head> -<!-- Generated by javadoc (1.7.0_161) on Thu May 10 18:10:21 UTC 2018 --> +<!-- Generated by javadoc (1.7.0_161) on Thu May 24 15:33:40 UTC 2018 --> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <title>HttpServer.StackServlet (Trafodion Database Connectivity Services 2.3.0 API)</title> -<meta name="date" content="2018-05-10"> +<meta name="date" content="2018-05-24"> <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style"> </head> <body> http://git-wip-us.apache.org/repos/asf/trafodion-site/blob/4bf06e86/docs/dcs_reference/apidocs/org/trafodion/dcs/http/HttpServer.html ---------------------------------------------------------------------- diff --git a/docs/dcs_reference/apidocs/org/trafodion/dcs/http/HttpServer.html b/docs/dcs_reference/apidocs/org/trafodion/dcs/http/HttpServer.html index 12f6d98..5120ed4 100644 --- a/docs/dcs_reference/apidocs/org/trafodion/dcs/http/HttpServer.html +++ b/docs/dcs_reference/apidocs/org/trafodion/dcs/http/HttpServer.html @@ -2,10 +2,10 @@ <!-- NewPage --> <html lang="en"> <head> -<!-- Generated by javadoc (1.7.0_161) on Thu May 10 18:10:21 UTC 2018 --> +<!-- Generated by javadoc (1.7.0_161) on Thu May 24 15:33:40 UTC 2018 --> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <title>HttpServer (Trafodion Database Connectivity Services 2.3.0 API)</title> -<meta name="date" content="2018-05-10"> +<meta name="date" content="2018-05-24"> <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style"> </head> <body> http://git-wip-us.apache.org/repos/asf/trafodion-site/blob/4bf06e86/docs/dcs_reference/apidocs/org/trafodion/dcs/http/class-use/FilterContainer.html ---------------------------------------------------------------------- diff --git a/docs/dcs_reference/apidocs/org/trafodion/dcs/http/class-use/FilterContainer.html b/docs/dcs_reference/apidocs/org/trafodion/dcs/http/class-use/FilterContainer.html index 9752276..7108dbf 100644 --- a/docs/dcs_reference/apidocs/org/trafodion/dcs/http/class-use/FilterContainer.html +++ b/docs/dcs_reference/apidocs/org/trafodion/dcs/http/class-use/FilterContainer.html @@ -2,10 +2,10 @@ <!-- NewPage --> <html lang="en"> <head> -<!-- Generated by javadoc (1.7.0_161) on Thu May 10 18:10:22 UTC 2018 --> +<!-- Generated by javadoc (1.7.0_161) on Thu May 24 15:33:41 UTC 2018 --> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <title>Uses of Interface org.trafodion.dcs.http.FilterContainer (Trafodion Database Connectivity Services 2.3.0 API)</title> -<meta name="date" content="2018-05-10"> +<meta name="date" content="2018-05-24"> <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style"> </head> <body>
