Repository: trafodion-site Updated Branches: refs/heads/asf-site db2a7b513 -> 4bf06e862
http://git-wip-us.apache.org/repos/asf/trafodion-site/blob/4bf06e86/docs/sql_reference/dependencies.html ---------------------------------------------------------------------- diff --git a/docs/sql_reference/dependencies.html b/docs/sql_reference/dependencies.html index bffab63..9f50666 100644 --- a/docs/sql_reference/dependencies.html +++ b/docs/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/sql_reference/index.html ---------------------------------------------------------------------- diff --git a/docs/sql_reference/index.html b/docs/sql_reference/index.html index d89fed7..c2bfc7e 100644 --- a/docs/sql_reference/index.html +++ b/docs/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/sql_reference/integration.html ---------------------------------------------------------------------- diff --git a/docs/sql_reference/integration.html b/docs/sql_reference/integration.html index 80f8346..dc1d61d 100644 --- a/docs/sql_reference/integration.html +++ b/docs/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/sql_reference/issue-tracking.html ---------------------------------------------------------------------- diff --git a/docs/sql_reference/issue-tracking.html b/docs/sql_reference/issue-tracking.html index 2d22828..3d862d7 100644 --- a/docs/sql_reference/issue-tracking.html +++ b/docs/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/sql_reference/license.html ---------------------------------------------------------------------- diff --git a/docs/sql_reference/license.html b/docs/sql_reference/license.html index 77373cc..183a2da 100644 --- a/docs/sql_reference/license.html +++ b/docs/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/sql_reference/mail-lists.html ---------------------------------------------------------------------- diff --git a/docs/sql_reference/mail-lists.html b/docs/sql_reference/mail-lists.html index 0092574..5e43c57 100644 --- a/docs/sql_reference/mail-lists.html +++ b/docs/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/sql_reference/project-info.html ---------------------------------------------------------------------- diff --git a/docs/sql_reference/project-info.html b/docs/sql_reference/project-info.html index 3a61e14..c460237 100644 --- a/docs/sql_reference/project-info.html +++ b/docs/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/sql_reference/project-summary.html ---------------------------------------------------------------------- diff --git a/docs/sql_reference/project-summary.html b/docs/sql_reference/project-summary.html index d0576bd..ab30494 100644 --- a/docs/sql_reference/project-summary.html +++ b/docs/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/sql_reference/source-repository.html ---------------------------------------------------------------------- diff --git a/docs/sql_reference/source-repository.html b/docs/sql_reference/source-repository.html index 04fd739..67bfd08 100644 --- a/docs/sql_reference/source-repository.html +++ b/docs/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/sql_reference/team-list.html ---------------------------------------------------------------------- diff --git a/docs/sql_reference/team-list.html b/docs/sql_reference/team-list.html index c4c595c..bb98b72 100644 --- a/docs/sql_reference/team-list.html +++ b/docs/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/documentation.html ---------------------------------------------------------------------- diff --git a/documentation.html b/documentation.html index 102c41a..a0fed05 100644 --- a/documentation.html +++ b/documentation.html @@ -1,7 +1,7 @@ <!DOCTYPE html> <!-- - Generated by Apache Maven Doxia at 2018-04-17 + Generated by Apache Maven Doxia at 2018-05-24 Rendered using Reflow Maven Skin 1.1.1 (http://andriusvelykis.github.io/reflow-maven-skin) --> <html xml:lang="en" lang="en"> http://git-wip-us.apache.org/repos/asf/trafodion-site/blob/4bf06e86/download.html ---------------------------------------------------------------------- diff --git a/download.html b/download.html index ea90a99..d75c8ab 100644 --- a/download.html +++ b/download.html @@ -1,7 +1,7 @@ <!DOCTYPE html> <!-- - Generated by Apache Maven Doxia at 2018-04-17 + Generated by Apache Maven Doxia at 2018-05-24 Rendered using Reflow Maven Skin 1.1.1 (http://andriusvelykis.github.io/reflow-maven-skin) --> <html xml:lang="en" lang="en"> http://git-wip-us.apache.org/repos/asf/trafodion-site/blob/4bf06e86/enable-secure-trafodion.html ---------------------------------------------------------------------- diff --git a/enable-secure-trafodion.html b/enable-secure-trafodion.html index 22d6ba4..61129c0 100644 --- a/enable-secure-trafodion.html +++ b/enable-secure-trafodion.html @@ -1,7 +1,7 @@ <!DOCTYPE html> <!-- - Generated by Apache Maven Doxia at 2018-04-17 + Generated by Apache Maven Doxia at 2018-05-24 Rendered using Reflow Maven Skin 1.1.1 (http://andriusvelykis.github.io/reflow-maven-skin) --> <html xml:lang="en" lang="en"> http://git-wip-us.apache.org/repos/asf/trafodion-site/blob/4bf06e86/faq.html ---------------------------------------------------------------------- diff --git a/faq.html b/faq.html index 2e0dac1..ef9b063 100644 --- a/faq.html +++ b/faq.html @@ -1,7 +1,7 @@ <!DOCTYPE html> <!-- - Generated by Apache Maven Doxia at 2018-04-17 + Generated by Apache Maven Doxia at 2018-05-24 Rendered using Reflow Maven Skin 1.1.1 (http://andriusvelykis.github.io/reflow-maven-skin) --> <html xml:lang="en" lang="en"> http://git-wip-us.apache.org/repos/asf/trafodion-site/blob/4bf06e86/index.html ---------------------------------------------------------------------- diff --git a/index.html b/index.html index 91ab0be..3ef6846 100644 --- a/index.html +++ b/index.html @@ -1,7 +1,7 @@ <!DOCTYPE html> <!-- - Generated by Apache Maven Doxia at 2018-04-17 + Generated by Apache Maven Doxia at 2018-05-24 Rendered using Reflow Maven Skin 1.1.1 (http://andriusvelykis.github.io/reflow-maven-skin) --> <html xml:lang="en" lang="en"> http://git-wip-us.apache.org/repos/asf/trafodion-site/blob/4bf06e86/integration.html ---------------------------------------------------------------------- diff --git a/integration.html b/integration.html index 653aef6..ccbe1c0 100644 --- a/integration.html +++ b/integration.html @@ -1,7 +1,7 @@ <!DOCTYPE html> <!-- - Generated by Apache Maven Doxia at 2018-05-10 + Generated by Apache Maven Doxia at 2018-05-24 Rendered using Reflow Maven Skin 1.1.1 (http://andriusvelykis.github.io/reflow-maven-skin) --> <html xml:lang="en" lang="en"> http://git-wip-us.apache.org/repos/asf/trafodion-site/blob/4bf06e86/issue-tracking.html ---------------------------------------------------------------------- diff --git a/issue-tracking.html b/issue-tracking.html index f5640fe..4752039 100644 --- a/issue-tracking.html +++ b/issue-tracking.html @@ -1,7 +1,7 @@ <!DOCTYPE html> <!-- - Generated by Apache Maven Doxia at 2018-05-10 + Generated by Apache Maven Doxia at 2018-05-24 Rendered using Reflow Maven Skin 1.1.1 (http://andriusvelykis.github.io/reflow-maven-skin) --> <html xml:lang="en" lang="en"> http://git-wip-us.apache.org/repos/asf/trafodion-site/blob/4bf06e86/ldapcheck.html ---------------------------------------------------------------------- diff --git a/ldapcheck.html b/ldapcheck.html index 370b8a4..8d8b1fd 100644 --- a/ldapcheck.html +++ b/ldapcheck.html @@ -1,7 +1,7 @@ <!DOCTYPE html> <!-- - Generated by Apache Maven Doxia at 2018-04-17 + Generated by Apache Maven Doxia at 2018-05-24 Rendered using Reflow Maven Skin 1.1.1 (http://andriusvelykis.github.io/reflow-maven-skin) --> <html xml:lang="en" lang="en"> http://git-wip-us.apache.org/repos/asf/trafodion-site/blob/4bf06e86/ldapconfigcheck.html ---------------------------------------------------------------------- diff --git a/ldapconfigcheck.html b/ldapconfigcheck.html index decf1fb..899f098 100644 --- a/ldapconfigcheck.html +++ b/ldapconfigcheck.html @@ -1,7 +1,7 @@ <!DOCTYPE html> <!-- - Generated by Apache Maven Doxia at 2018-04-17 + Generated by Apache Maven Doxia at 2018-05-24 Rendered using Reflow Maven Skin 1.1.1 (http://andriusvelykis.github.io/reflow-maven-skin) --> <html xml:lang="en" lang="en"> http://git-wip-us.apache.org/repos/asf/trafodion-site/blob/4bf06e86/license.html ---------------------------------------------------------------------- diff --git a/license.html b/license.html index 9be8d0e..b90e890 100644 --- a/license.html +++ b/license.html @@ -1,7 +1,7 @@ <!DOCTYPE html> <!-- - Generated by Apache Maven Doxia at 2018-05-10 + Generated by Apache Maven Doxia at 2018-05-24 Rendered using Reflow Maven Skin 1.1.1 (http://andriusvelykis.github.io/reflow-maven-skin) --> <html xml:lang="en" lang="en"> http://git-wip-us.apache.org/repos/asf/trafodion-site/blob/4bf06e86/logo.html ---------------------------------------------------------------------- diff --git a/logo.html b/logo.html index 190e9a0..b94daee 100644 --- a/logo.html +++ b/logo.html @@ -1,7 +1,7 @@ <!DOCTYPE html> <!-- - Generated by Apache Maven Doxia at 2018-04-17 + Generated by Apache Maven Doxia at 2018-05-24 Rendered using Reflow Maven Skin 1.1.1 (http://andriusvelykis.github.io/reflow-maven-skin) --> <html xml:lang="en" lang="en"> http://git-wip-us.apache.org/repos/asf/trafodion-site/blob/4bf06e86/mail-lists.html ---------------------------------------------------------------------- diff --git a/mail-lists.html b/mail-lists.html index 5f6fb3c..a4fd71d 100644 --- a/mail-lists.html +++ b/mail-lists.html @@ -1,7 +1,7 @@ <!DOCTYPE html> <!-- - Generated by Apache Maven Doxia at 2018-05-10 + Generated by Apache Maven Doxia at 2018-05-24 Rendered using Reflow Maven Skin 1.1.1 (http://andriusvelykis.github.io/reflow-maven-skin) --> <html xml:lang="en" lang="en"> http://git-wip-us.apache.org/repos/asf/trafodion-site/blob/4bf06e86/management.html ---------------------------------------------------------------------- diff --git a/management.html b/management.html index 4aa4ff7..203aa47 100644 --- a/management.html +++ b/management.html @@ -1,7 +1,7 @@ <!DOCTYPE html> <!-- - Generated by Apache Maven Doxia at 2018-04-17 + Generated by Apache Maven Doxia at 2018-05-24 Rendered using Reflow Maven Skin 1.1.1 (http://andriusvelykis.github.io/reflow-maven-skin) --> <html xml:lang="en" lang="en"> http://git-wip-us.apache.org/repos/asf/trafodion-site/blob/4bf06e86/modules.html ---------------------------------------------------------------------- diff --git a/modules.html b/modules.html index 3003958..8ff58af 100644 --- a/modules.html +++ b/modules.html @@ -1,7 +1,7 @@ <!DOCTYPE html> <!-- - Generated by Apache Maven Doxia at 2018-05-10 + Generated by Apache Maven Doxia at 2018-05-24 Rendered using Reflow Maven Skin 1.1.1 (http://andriusvelykis.github.io/reflow-maven-skin) --> <html xml:lang="en" lang="en"> http://git-wip-us.apache.org/repos/asf/trafodion-site/blob/4bf06e86/new-features.html ---------------------------------------------------------------------- diff --git a/new-features.html b/new-features.html index 1654e2e..ae35fb1 100644 --- a/new-features.html +++ b/new-features.html @@ -1,7 +1,7 @@ <!DOCTYPE html> <!-- - Generated by Apache Maven Doxia at 2018-04-17 + Generated by Apache Maven Doxia at 2018-05-24 Rendered using Reflow Maven Skin 1.1.1 (http://andriusvelykis.github.io/reflow-maven-skin) --> <html xml:lang="en" lang="en"> http://git-wip-us.apache.org/repos/asf/trafodion-site/blob/4bf06e86/passwordless-ssh.html ---------------------------------------------------------------------- diff --git a/passwordless-ssh.html b/passwordless-ssh.html index 34042a6..6a0e48f 100644 --- a/passwordless-ssh.html +++ b/passwordless-ssh.html @@ -1,7 +1,7 @@ <!DOCTYPE html> <!-- - Generated by Apache Maven Doxia at 2018-04-17 + Generated by Apache Maven Doxia at 2018-05-24 Rendered using Reflow Maven Skin 1.1.1 (http://andriusvelykis.github.io/reflow-maven-skin) --> <html xml:lang="en" lang="en"> http://git-wip-us.apache.org/repos/asf/trafodion-site/blob/4bf06e86/performance.html ---------------------------------------------------------------------- diff --git a/performance.html b/performance.html index 6f1bb47..90eb87c 100644 --- a/performance.html +++ b/performance.html @@ -1,7 +1,7 @@ <!DOCTYPE html> <!-- - Generated by Apache Maven Doxia at 2018-04-17 + Generated by Apache Maven Doxia at 2018-05-24 Rendered using Reflow Maven Skin 1.1.1 (http://andriusvelykis.github.io/reflow-maven-skin) --> <html xml:lang="en" lang="en"> http://git-wip-us.apache.org/repos/asf/trafodion-site/blob/4bf06e86/presentations.html ---------------------------------------------------------------------- diff --git a/presentations.html b/presentations.html index 62145bc..eecafd6 100644 --- a/presentations.html +++ b/presentations.html @@ -1,7 +1,7 @@ <!DOCTYPE html> <!-- - Generated by Apache Maven Doxia at 2018-04-17 + Generated by Apache Maven Doxia at 2018-05-24 Rendered using Reflow Maven Skin 1.1.1 (http://andriusvelykis.github.io/reflow-maven-skin) --> <html xml:lang="en" lang="en"> http://git-wip-us.apache.org/repos/asf/trafodion-site/blob/4bf06e86/project-info.html ---------------------------------------------------------------------- diff --git a/project-info.html b/project-info.html index a4d90a5..2a3c500 100644 --- a/project-info.html +++ b/project-info.html @@ -1,7 +1,7 @@ <!DOCTYPE html> <!-- - Generated by Apache Maven Doxia at 2018-05-10 + Generated by Apache Maven Doxia at 2018-05-24 Rendered using Reflow Maven Skin 1.1.1 (http://andriusvelykis.github.io/reflow-maven-skin) --> <html xml:lang="en" lang="en"> http://git-wip-us.apache.org/repos/asf/trafodion-site/blob/4bf06e86/project-summary.html ---------------------------------------------------------------------- diff --git a/project-summary.html b/project-summary.html index c3ef020..fcef939 100644 --- a/project-summary.html +++ b/project-summary.html @@ -1,7 +1,7 @@ <!DOCTYPE html> <!-- - Generated by Apache Maven Doxia at 2018-05-10 + Generated by Apache Maven Doxia at 2018-05-24 Rendered using Reflow Maven Skin 1.1.1 (http://andriusvelykis.github.io/reflow-maven-skin) --> <html xml:lang="en" lang="en"> http://git-wip-us.apache.org/repos/asf/trafodion-site/blob/4bf06e86/quickstart.html ---------------------------------------------------------------------- diff --git a/quickstart.html b/quickstart.html index b8aa8b3..624c443 100644 --- a/quickstart.html +++ b/quickstart.html @@ -1,7 +1,7 @@ <!DOCTYPE html> <!-- - Generated by Apache Maven Doxia at 2018-04-17 + Generated by Apache Maven Doxia at 2018-05-24 Rendered using Reflow Maven Skin 1.1.1 (http://andriusvelykis.github.io/reflow-maven-skin) --> <html xml:lang="en" lang="en"> http://git-wip-us.apache.org/repos/asf/trafodion-site/blob/4bf06e86/release-notes-0-8-0.html ---------------------------------------------------------------------- diff --git a/release-notes-0-8-0.html b/release-notes-0-8-0.html index 0bc3b43..9a0b8fa 100644 --- a/release-notes-0-8-0.html +++ b/release-notes-0-8-0.html @@ -1,7 +1,7 @@ <!DOCTYPE html> <!-- - Generated by Apache Maven Doxia at 2018-04-17 + Generated by Apache Maven Doxia at 2018-05-24 Rendered using Reflow Maven Skin 1.1.1 (http://andriusvelykis.github.io/reflow-maven-skin) --> <html xml:lang="en" lang="en"> http://git-wip-us.apache.org/repos/asf/trafodion-site/blob/4bf06e86/release-notes-0-9-0.html ---------------------------------------------------------------------- diff --git a/release-notes-0-9-0.html b/release-notes-0-9-0.html index c0b412d..3840143 100644 --- a/release-notes-0-9-0.html +++ b/release-notes-0-9-0.html @@ -1,7 +1,7 @@ <!DOCTYPE html> <!-- - Generated by Apache Maven Doxia at 2018-04-17 + Generated by Apache Maven Doxia at 2018-05-24 Rendered using Reflow Maven Skin 1.1.1 (http://andriusvelykis.github.io/reflow-maven-skin) --> <html xml:lang="en" lang="en"> http://git-wip-us.apache.org/repos/asf/trafodion-site/blob/4bf06e86/release-notes-1-0-0.html ---------------------------------------------------------------------- diff --git a/release-notes-1-0-0.html b/release-notes-1-0-0.html index 8dd34c1..976dcc9 100644 --- a/release-notes-1-0-0.html +++ b/release-notes-1-0-0.html @@ -1,7 +1,7 @@ <!DOCTYPE html> <!-- - Generated by Apache Maven Doxia at 2018-04-17 + Generated by Apache Maven Doxia at 2018-05-24 Rendered using Reflow Maven Skin 1.1.1 (http://andriusvelykis.github.io/reflow-maven-skin) --> <html xml:lang="en" lang="en"> http://git-wip-us.apache.org/repos/asf/trafodion-site/blob/4bf06e86/release-notes-1-0-1.html ---------------------------------------------------------------------- diff --git a/release-notes-1-0-1.html b/release-notes-1-0-1.html index 8b81d77..7e3fe86 100644 --- a/release-notes-1-0-1.html +++ b/release-notes-1-0-1.html @@ -1,7 +1,7 @@ <!DOCTYPE html> <!-- - Generated by Apache Maven Doxia at 2018-04-17 + Generated by Apache Maven Doxia at 2018-05-24 Rendered using Reflow Maven Skin 1.1.1 (http://andriusvelykis.github.io/reflow-maven-skin) --> <html xml:lang="en" lang="en"> http://git-wip-us.apache.org/repos/asf/trafodion-site/blob/4bf06e86/release-notes-1-1-0.html ---------------------------------------------------------------------- diff --git a/release-notes-1-1-0.html b/release-notes-1-1-0.html index 0552803..647d7a3 100644 --- a/release-notes-1-1-0.html +++ b/release-notes-1-1-0.html @@ -1,7 +1,7 @@ <!DOCTYPE html> <!-- - Generated by Apache Maven Doxia at 2018-04-17 + Generated by Apache Maven Doxia at 2018-05-24 Rendered using Reflow Maven Skin 1.1.1 (http://andriusvelykis.github.io/reflow-maven-skin) --> <html xml:lang="en" lang="en"> http://git-wip-us.apache.org/repos/asf/trafodion-site/blob/4bf06e86/release-notes-1-3-0.html ---------------------------------------------------------------------- diff --git a/release-notes-1-3-0.html b/release-notes-1-3-0.html index 6a992ea..fa5b663 100644 --- a/release-notes-1-3-0.html +++ b/release-notes-1-3-0.html @@ -1,7 +1,7 @@ <!DOCTYPE html> <!-- - Generated by Apache Maven Doxia at 2018-04-17 + Generated by Apache Maven Doxia at 2018-05-24 Rendered using Reflow Maven Skin 1.1.1 (http://andriusvelykis.github.io/reflow-maven-skin) --> <html xml:lang="en" lang="en"> http://git-wip-us.apache.org/repos/asf/trafodion-site/blob/4bf06e86/release-notes-2-0-0.html ---------------------------------------------------------------------- diff --git a/release-notes-2-0-0.html b/release-notes-2-0-0.html index 4f1a6f6..04e27b6 100644 --- a/release-notes-2-0-0.html +++ b/release-notes-2-0-0.html @@ -1,7 +1,7 @@ <!DOCTYPE html> <!-- - Generated by Apache Maven Doxia at 2018-04-17 + Generated by Apache Maven Doxia at 2018-05-24 Rendered using Reflow Maven Skin 1.1.1 (http://andriusvelykis.github.io/reflow-maven-skin) --> <html xml:lang="en" lang="en"> http://git-wip-us.apache.org/repos/asf/trafodion-site/blob/4bf06e86/release-notes-2-0-1.html ---------------------------------------------------------------------- diff --git a/release-notes-2-0-1.html b/release-notes-2-0-1.html index 7f3d4e1..58f22a6 100644 --- a/release-notes-2-0-1.html +++ b/release-notes-2-0-1.html @@ -1,7 +1,7 @@ <!DOCTYPE html> <!-- - Generated by Apache Maven Doxia at 2018-04-17 + Generated by Apache Maven Doxia at 2018-05-24 Rendered using Reflow Maven Skin 1.1.1 (http://andriusvelykis.github.io/reflow-maven-skin) --> <html xml:lang="en" lang="en"> http://git-wip-us.apache.org/repos/asf/trafodion-site/blob/4bf06e86/release-notes-2-1-0.html ---------------------------------------------------------------------- diff --git a/release-notes-2-1-0.html b/release-notes-2-1-0.html index b461f85..472a5dc 100644 --- a/release-notes-2-1-0.html +++ b/release-notes-2-1-0.html @@ -1,7 +1,7 @@ <!DOCTYPE html> <!-- - Generated by Apache Maven Doxia at 2018-04-17 + Generated by Apache Maven Doxia at 2018-05-24 Rendered using Reflow Maven Skin 1.1.1 (http://andriusvelykis.github.io/reflow-maven-skin) --> <html xml:lang="en" lang="en"> http://git-wip-us.apache.org/repos/asf/trafodion-site/blob/4bf06e86/release-notes-2-2-0.html ---------------------------------------------------------------------- diff --git a/release-notes-2-2-0.html b/release-notes-2-2-0.html index e8b35c0..69ba839 100644 --- a/release-notes-2-2-0.html +++ b/release-notes-2-2-0.html @@ -1,7 +1,7 @@ <!DOCTYPE html> <!-- - Generated by Apache Maven Doxia at 2018-04-17 + Generated by Apache Maven Doxia at 2018-05-24 Rendered using Reflow Maven Skin 1.1.1 (http://andriusvelykis.github.io/reflow-maven-skin) --> <html xml:lang="en" lang="en"> http://git-wip-us.apache.org/repos/asf/trafodion-site/blob/4bf06e86/release-notes.html ---------------------------------------------------------------------- diff --git a/release-notes.html b/release-notes.html index 102bf23..ed8ed69 100644 --- a/release-notes.html +++ b/release-notes.html @@ -1,7 +1,7 @@ <!DOCTYPE html> <!-- - Generated by Apache Maven Doxia at 2018-04-17 + Generated by Apache Maven Doxia at 2018-05-24 Rendered using Reflow Maven Skin 1.1.1 (http://andriusvelykis.github.io/reflow-maven-skin) --> <html xml:lang="en" lang="en"> http://git-wip-us.apache.org/repos/asf/trafodion-site/blob/4bf06e86/roadmap.html ---------------------------------------------------------------------- diff --git a/roadmap.html b/roadmap.html index 7100def..4b0531a 100644 --- a/roadmap.html +++ b/roadmap.html @@ -1,7 +1,7 @@ <!DOCTYPE html> <!-- - Generated by Apache Maven Doxia at 2018-04-17 + Generated by Apache Maven Doxia at 2018-05-24 Rendered using Reflow Maven Skin 1.1.1 (http://andriusvelykis.github.io/reflow-maven-skin) --> <html xml:lang="en" lang="en"> http://git-wip-us.apache.org/repos/asf/trafodion-site/blob/4bf06e86/source-repository.html ---------------------------------------------------------------------- diff --git a/source-repository.html b/source-repository.html index a8cf1af..303e8f9 100644 --- a/source-repository.html +++ b/source-repository.html @@ -1,7 +1,7 @@ <!DOCTYPE html> <!-- - Generated by Apache Maven Doxia at 2018-05-10 + Generated by Apache Maven Doxia at 2018-05-24 Rendered using Reflow Maven Skin 1.1.1 (http://andriusvelykis.github.io/reflow-maven-skin) --> <html xml:lang="en" lang="en"> http://git-wip-us.apache.org/repos/asf/trafodion-site/blob/4bf06e86/team-list.html ---------------------------------------------------------------------- diff --git a/team-list.html b/team-list.html index 2ca6cb8..56ab934 100644 --- a/team-list.html +++ b/team-list.html @@ -1,7 +1,7 @@ <!DOCTYPE html> <!-- - Generated by Apache Maven Doxia at 2018-05-10 + Generated by Apache Maven Doxia at 2018-05-24 Rendered using Reflow Maven Skin 1.1.1 (http://andriusvelykis.github.io/reflow-maven-skin) --> <html xml:lang="en" lang="en"> http://git-wip-us.apache.org/repos/asf/trafodion-site/blob/4bf06e86/team-redirect.html ---------------------------------------------------------------------- diff --git a/team-redirect.html b/team-redirect.html index 7caa2ff..bf1d296 100644 --- a/team-redirect.html +++ b/team-redirect.html @@ -1,7 +1,7 @@ <!DOCTYPE html> <!-- - Generated by Apache Maven Doxia at 2018-04-17 + Generated by Apache Maven Doxia at 2018-05-24 Rendered using Reflow Maven Skin 1.1.1 (http://andriusvelykis.github.io/reflow-maven-skin) --> <html xml:lang="en" lang="en"> http://git-wip-us.apache.org/repos/asf/trafodion-site/blob/4bf06e86/traf_authentication_config.html ---------------------------------------------------------------------- diff --git a/traf_authentication_config.html b/traf_authentication_config.html index 85195da..7d663f3 100644 --- a/traf_authentication_config.html +++ b/traf_authentication_config.html @@ -1,7 +1,7 @@ <!DOCTYPE html> <!-- - Generated by Apache Maven Doxia at 2018-04-17 + Generated by Apache Maven Doxia at 2018-05-24 Rendered using Reflow Maven Skin 1.1.1 (http://andriusvelykis.github.io/reflow-maven-skin) --> <html xml:lang="en" lang="en">
