Repository: incubator-trafodion-site Updated Branches: refs/heads/asf-site fdced18d9 -> e64b94ebe
http://git-wip-us.apache.org/repos/asf/incubator-trafodion-site/blob/e64b94eb/docs/sql_reference/dependencies.html ---------------------------------------------------------------------- diff --git a/docs/sql_reference/dependencies.html b/docs/sql_reference/dependencies.html index 2f6ccb5..5f2f010 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 Dec 12, 2017 --> +<!-- Generated by Apache Maven Doxia at Dec 18, 2017 --> <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="20171212" /> + <meta name="Date-Revision-yyyymmdd" content="20171218" /> <meta http-equiv="Content-Language" content="en" /> </head> @@ -27,7 +27,7 @@ <div class="xleft"> - <span id="publishDate">Last Published: 2017-12-12</span> + <span id="publishDate">Last Published: 2017-12-18</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/incubator-trafodion-site/blob/e64b94eb/docs/sql_reference/index.html ---------------------------------------------------------------------- diff --git a/docs/sql_reference/index.html b/docs/sql_reference/index.html index ed55fca..2fb2c9f 100644 --- a/docs/sql_reference/index.html +++ b/docs/sql_reference/index.html @@ -7673,7 +7673,7 @@ hbase-options-list is: <li> <p><code>VOLATILE</code></p> <div class="paragraph"> -<p>specifies a volatile table, which is a table limited to the session that creates the table. After the session ends, the</p> +<p>specifies a volatile table, which is a table limited to the session that creates the table. After the session ends, the volatile table will be automatically dropped.</p> </div> </li> <li> @@ -17977,13 +17977,14 @@ called an HFile.</p> <pre class="CodeRay highlight"><code data-lang="text">LOAD [WITH option[[,] option]...] INTO target-table SELECT ... FROM source-table option is: - TRUNCATE TABLE - | NO RECOVERY + CONTINUE ON ERROR + | LOG ERROR ROWS [TO error-location-name] + | STOP AFTER num ERROR ROWS + | TRUNCATE TABLE | NO POPULATE INDEXES | NO DUPLICATE CHECK | NO OUTPUT - | INDEX TABLE ONLY - | UPSERT USING LOAD</code></pre> + | INDEX TABLE ONLY</code></pre> </div> </div> <div class="sect3"> @@ -18019,30 +18020,68 @@ specify one or more of these options:</p> <div class="ulist"> <ul> <li> -<p><code>TRUNCATE TABLE</code></p> +<p><code>CONTINUE ON ERROR</code></p> <div class="paragraph"> -<p>causes the Bulk Loader to truncate the target table before starting the -load operation. By default, the Bulk Loader does not truncate the target -table before loading data.</p> +<p>LOAD statement will continue after errors encountered while scanning rows from source table.</p> +</div> +<div class="paragraph"> +<p>Errors during the load or sort phase will cause the LOAD statement to abort.</p> +</div> +<div class="paragraph"> +<p>Error rows will be logged by default in HDFS files in the directory <code>/user/trafodion/bulkload/logs</code>. The default name of the error files will be of the form <code>ERR_<three-part-target-table-name>_<date>_<id></code>, where <code><id></code> is a numeric identifier unique to the process where the error was seen.</p> +</div> +<div class="paragraph"> +<p>This option is implied if <code>LOG ERROR ROWS [TO <em>error-location-name</em>]</code> or <code>STOP AFTER <em>num</em> ERROR ROWS</code> is specified and it is not enabled by default.</p> </div> </li> <li> -<p><code>NO RECOVERY</code></p> +<p><code>LOG ERROR ROWS [TO <em>error-location-name</em>]</code></p> +<div class="paragraph"> +<p>If error rows must be written to a specified location, then specify TO <em>error-location-name</em>, otherwise they will be written to the default location.</p> +</div> <div class="paragraph"> -<p>specifies that the Bulk Loader not use HBase snapshots for recovery. By -default, the Bulk Loader handles recovery using the HBase snapshots -mechanism.</p> +<p>Error logs are written in separate files by the processes involved in the load command under sub-directory representing the load command in the given location. +The actual log file location is displayed in the load command output.</p> +</div> +<div class="ulist"> +<ul> +<li> +<p><code><em>error-location-name</em></code></p> +<div class="paragraph"> +<p>must be a HDFS directory name to which trafodion has write access.</p> </div> </li> </ul> </div> </li> -</ul> +<li> +<p><code>STOP AFTER <em>num</em> ERROR ROWS</code></p> +<div class="paragraph"> +<p>Use this option to stop the LOAD statement from progressing after num errors have been encountered during this statement.</p> +</div> +<div class="paragraph"> +<p>Duplicate check errors and errors which we have continued from using previous options are included in the count.</p> </div> -<div style="page-break-after: always;"></div> <div class="ulist"> <ul> <li> +<p><em>num</em></p> +<div class="paragraph"> +<p>specifies the number of error rows.</p> +</div> +</li> +</ul> +</div> +</li> +<li> +<p><code>TRUNCATE TABLE</code></p> +<div class="paragraph"> +<p>causes the Bulk Loader to truncate the target table before starting the +load operation. By default, the Bulk Loader does not truncate the target +table before loading data.</p> +</div> +</li> +<li> <p><code>NO POPULATE INDEXES</code></p> <div class="paragraph"> <p>specifies that the Bulk Loader not handle index maintenance or populate @@ -18066,8 +18105,7 @@ data and generates an error when it detects duplicates.</p> the LOAD statement prints status messages listing the steps that the Bulk Loader is executing.</p> </div> -<div class="ulist"> -<ul> +</li> <li> <p><code>INDEX TABLE ONLY</code></p> <div class="paragraph"> @@ -18075,13 +18113,6 @@ Bulk Loader is executing.</p> data from the parent table.</p> </div> </li> -<li> -<p><code>UPSERT USING LOAD</code></p> -<div class="paragraph"> -<p>specifies that the data be inserted into the target table using row set -inserts without a transaction.</p> -</div> -</li> </ul> </div> </li> @@ -44981,7 +45012,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 2017-05-29 17:37:12 UTC +Last updated 2016-11-03 22:36:05 UTC </div> </div> <script> http://git-wip-us.apache.org/repos/asf/incubator-trafodion-site/blob/e64b94eb/docs/sql_reference/integration.html ---------------------------------------------------------------------- diff --git a/docs/sql_reference/integration.html b/docs/sql_reference/integration.html index 9ef002f..fe01e7c 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 Dec 12, 2017 --> +<!-- Generated by Apache Maven Doxia at Dec 18, 2017 --> <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="20171212" /> + <meta name="Date-Revision-yyyymmdd" content="20171218" /> <meta http-equiv="Content-Language" content="en" /> </head> @@ -27,7 +27,7 @@ <div class="xleft"> - <span id="publishDate">Last Published: 2017-12-12</span> + <span id="publishDate">Last Published: 2017-12-18</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/incubator-trafodion-site/blob/e64b94eb/docs/sql_reference/issue-tracking.html ---------------------------------------------------------------------- diff --git a/docs/sql_reference/issue-tracking.html b/docs/sql_reference/issue-tracking.html index 4b4f32b..17a0ee0 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 Dec 12, 2017 --> +<!-- Generated by Apache Maven Doxia at Dec 18, 2017 --> <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="20171212" /> + <meta name="Date-Revision-yyyymmdd" content="20171218" /> <meta http-equiv="Content-Language" content="en" /> </head> @@ -27,7 +27,7 @@ <div class="xleft"> - <span id="publishDate">Last Published: 2017-12-12</span> + <span id="publishDate">Last Published: 2017-12-18</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/incubator-trafodion-site/blob/e64b94eb/docs/sql_reference/license.html ---------------------------------------------------------------------- diff --git a/docs/sql_reference/license.html b/docs/sql_reference/license.html index 7842d0b..10af7f4 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 Dec 12, 2017 --> +<!-- Generated by Apache Maven Doxia at Dec 18, 2017 --> <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="20171212" /> + <meta name="Date-Revision-yyyymmdd" content="20171218" /> <meta http-equiv="Content-Language" content="en" /> </head> @@ -27,7 +27,7 @@ <div class="xleft"> - <span id="publishDate">Last Published: 2017-12-12</span> + <span id="publishDate">Last Published: 2017-12-18</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/incubator-trafodion-site/blob/e64b94eb/docs/sql_reference/mail-lists.html ---------------------------------------------------------------------- diff --git a/docs/sql_reference/mail-lists.html b/docs/sql_reference/mail-lists.html index 1c29e59..df39545 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 Dec 12, 2017 --> +<!-- Generated by Apache Maven Doxia at Dec 18, 2017 --> <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="20171212" /> + <meta name="Date-Revision-yyyymmdd" content="20171218" /> <meta http-equiv="Content-Language" content="en" /> </head> @@ -27,7 +27,7 @@ <div class="xleft"> - <span id="publishDate">Last Published: 2017-12-12</span> + <span id="publishDate">Last Published: 2017-12-18</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/incubator-trafodion-site/blob/e64b94eb/docs/sql_reference/project-info.html ---------------------------------------------------------------------- diff --git a/docs/sql_reference/project-info.html b/docs/sql_reference/project-info.html index d61aace..3a316ed 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 Dec 12, 2017 --> +<!-- Generated by Apache Maven Doxia at Dec 18, 2017 --> <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="20171212" /> + <meta name="Date-Revision-yyyymmdd" content="20171218" /> <meta http-equiv="Content-Language" content="en" /> </head> @@ -27,7 +27,7 @@ <div class="xleft"> - <span id="publishDate">Last Published: 2017-12-12</span> + <span id="publishDate">Last Published: 2017-12-18</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/incubator-trafodion-site/blob/e64b94eb/docs/sql_reference/project-summary.html ---------------------------------------------------------------------- diff --git a/docs/sql_reference/project-summary.html b/docs/sql_reference/project-summary.html index 68b4162..406638f 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 Dec 12, 2017 --> +<!-- Generated by Apache Maven Doxia at Dec 18, 2017 --> <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="20171212" /> + <meta name="Date-Revision-yyyymmdd" content="20171218" /> <meta http-equiv="Content-Language" content="en" /> </head> @@ -27,7 +27,7 @@ <div class="xleft"> - <span id="publishDate">Last Published: 2017-12-12</span> + <span id="publishDate">Last Published: 2017-12-18</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/incubator-trafodion-site/blob/e64b94eb/docs/sql_reference/source-repository.html ---------------------------------------------------------------------- diff --git a/docs/sql_reference/source-repository.html b/docs/sql_reference/source-repository.html index a359ce3..be5d253 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 Dec 12, 2017 --> +<!-- Generated by Apache Maven Doxia at Dec 18, 2017 --> <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="20171212" /> + <meta name="Date-Revision-yyyymmdd" content="20171218" /> <meta http-equiv="Content-Language" content="en" /> </head> @@ -27,7 +27,7 @@ <div class="xleft"> - <span id="publishDate">Last Published: 2017-12-12</span> + <span id="publishDate">Last Published: 2017-12-18</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/incubator-trafodion-site/blob/e64b94eb/docs/sql_reference/team-list.html ---------------------------------------------------------------------- diff --git a/docs/sql_reference/team-list.html b/docs/sql_reference/team-list.html index 9ec7a0d..3a58ee6 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 Dec 12, 2017 --> +<!-- Generated by Apache Maven Doxia at Dec 18, 2017 --> <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="20171212" /> + <meta name="Date-Revision-yyyymmdd" content="20171218" /> <meta http-equiv="Content-Language" content="en" /> </head> @@ -27,7 +27,7 @@ <div class="xleft"> - <span id="publishDate">Last Published: 2017-12-12</span> + <span id="publishDate">Last Published: 2017-12-18</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/incubator-trafodion-site/blob/e64b94eb/documentation.html ---------------------------------------------------------------------- diff --git a/documentation.html b/documentation.html index 6b6b565..71aecba 100644 --- a/documentation.html +++ b/documentation.html @@ -1,7 +1,7 @@ <!DOCTYPE html> <!-- - Generated by Apache Maven Doxia at 2017-12-12 + Generated by Apache Maven Doxia at 2017-12-18 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/incubator-trafodion-site/blob/e64b94eb/download.html ---------------------------------------------------------------------- diff --git a/download.html b/download.html index f24f129..780f18b 100644 --- a/download.html +++ b/download.html @@ -1,7 +1,7 @@ <!DOCTYPE html> <!-- - Generated by Apache Maven Doxia at 2017-12-12 + Generated by Apache Maven Doxia at 2017-12-18 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/incubator-trafodion-site/blob/e64b94eb/enable-secure-trafodion.html ---------------------------------------------------------------------- diff --git a/enable-secure-trafodion.html b/enable-secure-trafodion.html index eb6155a..2ff7497 100644 --- a/enable-secure-trafodion.html +++ b/enable-secure-trafodion.html @@ -1,7 +1,7 @@ <!DOCTYPE html> <!-- - Generated by Apache Maven Doxia at 2017-12-12 + Generated by Apache Maven Doxia at 2017-12-18 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/incubator-trafodion-site/blob/e64b94eb/faq.html ---------------------------------------------------------------------- diff --git a/faq.html b/faq.html index 168f128..57426cb 100644 --- a/faq.html +++ b/faq.html @@ -1,7 +1,7 @@ <!DOCTYPE html> <!-- - Generated by Apache Maven Doxia at 2017-12-12 + Generated by Apache Maven Doxia at 2017-12-18 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/incubator-trafodion-site/blob/e64b94eb/index.html ---------------------------------------------------------------------- diff --git a/index.html b/index.html index d2dda65..ec4e403 100644 --- a/index.html +++ b/index.html @@ -1,9 +1,8 @@ <!DOCTYPE html> <!-- - Generated by Apache Maven Doxia at 2017-12-12 + Generated by Apache Maven Doxia at 2017-12-18 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/incubator-trafodion-site/blob/e64b94eb/integration.html ---------------------------------------------------------------------- diff --git a/integration.html b/integration.html index 5621580..6007212 100644 --- a/integration.html +++ b/integration.html @@ -1,7 +1,7 @@ <!DOCTYPE html> <!-- - Generated by Apache Maven Doxia at 2017-12-12 + Generated by Apache Maven Doxia at 2017-12-18 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/incubator-trafodion-site/blob/e64b94eb/issue-tracking.html ---------------------------------------------------------------------- diff --git a/issue-tracking.html b/issue-tracking.html index 7297535..f728c8c 100644 --- a/issue-tracking.html +++ b/issue-tracking.html @@ -1,7 +1,7 @@ <!DOCTYPE html> <!-- - Generated by Apache Maven Doxia at 2017-12-12 + Generated by Apache Maven Doxia at 2017-12-18 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/incubator-trafodion-site/blob/e64b94eb/ldapcheck.html ---------------------------------------------------------------------- diff --git a/ldapcheck.html b/ldapcheck.html index 534a848..6d6aa8c 100644 --- a/ldapcheck.html +++ b/ldapcheck.html @@ -1,7 +1,7 @@ <!DOCTYPE html> <!-- - Generated by Apache Maven Doxia at 2017-12-12 + Generated by Apache Maven Doxia at 2017-12-18 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/incubator-trafodion-site/blob/e64b94eb/ldapconfigcheck.html ---------------------------------------------------------------------- diff --git a/ldapconfigcheck.html b/ldapconfigcheck.html index b33ab69..c4f95a6 100644 --- a/ldapconfigcheck.html +++ b/ldapconfigcheck.html @@ -1,7 +1,7 @@ <!DOCTYPE html> <!-- - Generated by Apache Maven Doxia at 2017-12-12 + Generated by Apache Maven Doxia at 2017-12-18 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/incubator-trafodion-site/blob/e64b94eb/license.html ---------------------------------------------------------------------- diff --git a/license.html b/license.html index 4612498..09d33fe 100644 --- a/license.html +++ b/license.html @@ -1,7 +1,7 @@ <!DOCTYPE html> <!-- - Generated by Apache Maven Doxia at 2017-12-12 + Generated by Apache Maven Doxia at 2017-12-18 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/incubator-trafodion-site/blob/e64b94eb/logo.html ---------------------------------------------------------------------- diff --git a/logo.html b/logo.html index 1672b5d..4a137e6 100644 --- a/logo.html +++ b/logo.html @@ -1,7 +1,7 @@ <!DOCTYPE html> <!-- - Generated by Apache Maven Doxia at 2017-12-12 + Generated by Apache Maven Doxia at 2017-12-18 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/incubator-trafodion-site/blob/e64b94eb/mail-lists.html ---------------------------------------------------------------------- diff --git a/mail-lists.html b/mail-lists.html index 0bfa4cc..df96422 100644 --- a/mail-lists.html +++ b/mail-lists.html @@ -1,7 +1,7 @@ <!DOCTYPE html> <!-- - Generated by Apache Maven Doxia at 2017-12-12 + Generated by Apache Maven Doxia at 2017-12-18 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/incubator-trafodion-site/blob/e64b94eb/management.html ---------------------------------------------------------------------- diff --git a/management.html b/management.html index 2e21d2a..d59b2f4 100644 --- a/management.html +++ b/management.html @@ -1,7 +1,7 @@ <!DOCTYPE html> <!-- - Generated by Apache Maven Doxia at 2017-12-12 + Generated by Apache Maven Doxia at 2017-12-18 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/incubator-trafodion-site/blob/e64b94eb/modules.html ---------------------------------------------------------------------- diff --git a/modules.html b/modules.html index cd94bee..3894cdd 100644 --- a/modules.html +++ b/modules.html @@ -1,7 +1,7 @@ <!DOCTYPE html> <!-- - Generated by Apache Maven Doxia at 2017-12-12 + Generated by Apache Maven Doxia at 2017-12-18 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/incubator-trafodion-site/blob/e64b94eb/new-features.html ---------------------------------------------------------------------- diff --git a/new-features.html b/new-features.html index 2e9be86..65425cb 100644 --- a/new-features.html +++ b/new-features.html @@ -1,7 +1,7 @@ <!DOCTYPE html> <!-- - Generated by Apache Maven Doxia at 2017-12-12 + Generated by Apache Maven Doxia at 2017-12-18 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/incubator-trafodion-site/blob/e64b94eb/passwordless-ssh.html ---------------------------------------------------------------------- diff --git a/passwordless-ssh.html b/passwordless-ssh.html index 5a36439..9ef3694 100644 --- a/passwordless-ssh.html +++ b/passwordless-ssh.html @@ -1,7 +1,7 @@ <!DOCTYPE html> <!-- - Generated by Apache Maven Doxia at 2017-12-12 + Generated by Apache Maven Doxia at 2017-12-18 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/incubator-trafodion-site/blob/e64b94eb/performance.html ---------------------------------------------------------------------- diff --git a/performance.html b/performance.html index e23b56f..6e19bcf 100644 --- a/performance.html +++ b/performance.html @@ -1,7 +1,7 @@ <!DOCTYPE html> <!-- - Generated by Apache Maven Doxia at 2017-12-12 + Generated by Apache Maven Doxia at 2017-12-18 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/incubator-trafodion-site/blob/e64b94eb/presentations.html ---------------------------------------------------------------------- diff --git a/presentations.html b/presentations.html index 389efb2..1da6806 100644 --- a/presentations.html +++ b/presentations.html @@ -1,7 +1,7 @@ <!DOCTYPE html> <!-- - Generated by Apache Maven Doxia at 2017-12-12 + Generated by Apache Maven Doxia at 2017-12-18 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/incubator-trafodion-site/blob/e64b94eb/project-info.html ---------------------------------------------------------------------- diff --git a/project-info.html b/project-info.html index 57169fb..b3154f7 100644 --- a/project-info.html +++ b/project-info.html @@ -1,7 +1,7 @@ <!DOCTYPE html> <!-- - Generated by Apache Maven Doxia at 2017-12-12 + Generated by Apache Maven Doxia at 2017-12-18 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/incubator-trafodion-site/blob/e64b94eb/project-summary.html ---------------------------------------------------------------------- diff --git a/project-summary.html b/project-summary.html index 7f61e19..8ceb872 100644 --- a/project-summary.html +++ b/project-summary.html @@ -1,7 +1,7 @@ <!DOCTYPE html> <!-- - Generated by Apache Maven Doxia at 2017-12-12 + Generated by Apache Maven Doxia at 2017-12-18 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/incubator-trafodion-site/blob/e64b94eb/quickstart.html ---------------------------------------------------------------------- diff --git a/quickstart.html b/quickstart.html index 6416f14..df7e4a3 100644 --- a/quickstart.html +++ b/quickstart.html @@ -1,7 +1,7 @@ <!DOCTYPE html> <!-- - Generated by Apache Maven Doxia at 2017-12-12 + Generated by Apache Maven Doxia at 2017-12-18 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/incubator-trafodion-site/blob/e64b94eb/release-notes-0-8-0.html ---------------------------------------------------------------------- diff --git a/release-notes-0-8-0.html b/release-notes-0-8-0.html index d5929d7..aab5fc5 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 2017-12-12 + Generated by Apache Maven Doxia at 2017-12-18 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/incubator-trafodion-site/blob/e64b94eb/release-notes-0-9-0.html ---------------------------------------------------------------------- diff --git a/release-notes-0-9-0.html b/release-notes-0-9-0.html index ae2fab1..bfa1580 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 2017-12-12 + Generated by Apache Maven Doxia at 2017-12-18 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/incubator-trafodion-site/blob/e64b94eb/release-notes-1-0-0.html ---------------------------------------------------------------------- diff --git a/release-notes-1-0-0.html b/release-notes-1-0-0.html index a6370c7..7b09f80 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 2017-12-12 + Generated by Apache Maven Doxia at 2017-12-18 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/incubator-trafodion-site/blob/e64b94eb/release-notes-1-0-1.html ---------------------------------------------------------------------- diff --git a/release-notes-1-0-1.html b/release-notes-1-0-1.html index cd44dfc..73cbb7f 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 2017-12-12 + Generated by Apache Maven Doxia at 2017-12-18 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/incubator-trafodion-site/blob/e64b94eb/release-notes-1-1-0.html ---------------------------------------------------------------------- diff --git a/release-notes-1-1-0.html b/release-notes-1-1-0.html index 415f620..19de436 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 2017-12-12 + Generated by Apache Maven Doxia at 2017-12-18 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/incubator-trafodion-site/blob/e64b94eb/release-notes-1-3-0.html ---------------------------------------------------------------------- diff --git a/release-notes-1-3-0.html b/release-notes-1-3-0.html index a310932..1930f97 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 2017-12-12 + Generated by Apache Maven Doxia at 2017-12-18 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/incubator-trafodion-site/blob/e64b94eb/release-notes-2-0-0.html ---------------------------------------------------------------------- diff --git a/release-notes-2-0-0.html b/release-notes-2-0-0.html index 4b40867..ebe32c1 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 2017-12-12 + Generated by Apache Maven Doxia at 2017-12-18 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/incubator-trafodion-site/blob/e64b94eb/release-notes-2-0-1.html ---------------------------------------------------------------------- diff --git a/release-notes-2-0-1.html b/release-notes-2-0-1.html index 000f2d9..2f06f16 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 2017-12-12 + Generated by Apache Maven Doxia at 2017-12-18 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/incubator-trafodion-site/blob/e64b94eb/release-notes-2-1-0.html ---------------------------------------------------------------------- diff --git a/release-notes-2-1-0.html b/release-notes-2-1-0.html index ad47f3a..0472124 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 2017-12-12 + Generated by Apache Maven Doxia at 2017-12-18 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/incubator-trafodion-site/blob/e64b94eb/release-notes.html ---------------------------------------------------------------------- diff --git a/release-notes.html b/release-notes.html index 4c359b1..febbdad 100644 --- a/release-notes.html +++ b/release-notes.html @@ -1,7 +1,7 @@ <!DOCTYPE html> <!-- - Generated by Apache Maven Doxia at 2017-12-12 + Generated by Apache Maven Doxia at 2017-12-18 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/incubator-trafodion-site/blob/e64b94eb/roadmap.html ---------------------------------------------------------------------- diff --git a/roadmap.html b/roadmap.html index 2c71ae0..a573086 100644 --- a/roadmap.html +++ b/roadmap.html @@ -1,7 +1,7 @@ <!DOCTYPE html> <!-- - Generated by Apache Maven Doxia at 2017-12-12 + Generated by Apache Maven Doxia at 2017-12-18 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/incubator-trafodion-site/blob/e64b94eb/source-repository.html ---------------------------------------------------------------------- diff --git a/source-repository.html b/source-repository.html index c64f7cc..c08a5ad 100644 --- a/source-repository.html +++ b/source-repository.html @@ -1,7 +1,7 @@ <!DOCTYPE html> <!-- - Generated by Apache Maven Doxia at 2017-12-12 + Generated by Apache Maven Doxia at 2017-12-18 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/incubator-trafodion-site/blob/e64b94eb/team-list.html ---------------------------------------------------------------------- diff --git a/team-list.html b/team-list.html index b8fc899..85c12ca 100644 --- a/team-list.html +++ b/team-list.html @@ -1,7 +1,7 @@ <!DOCTYPE html> <!-- - Generated by Apache Maven Doxia at 2017-12-12 + Generated by Apache Maven Doxia at 2017-12-18 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/incubator-trafodion-site/blob/e64b94eb/team-redirect.html ---------------------------------------------------------------------- diff --git a/team-redirect.html b/team-redirect.html index 93a3116..5016e7f 100644 --- a/team-redirect.html +++ b/team-redirect.html @@ -1,7 +1,7 @@ <!DOCTYPE html> <!-- - Generated by Apache Maven Doxia at 2017-12-12 + Generated by Apache Maven Doxia at 2017-12-18 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/incubator-trafodion-site/blob/e64b94eb/traf_authentication_config.html ---------------------------------------------------------------------- diff --git a/traf_authentication_config.html b/traf_authentication_config.html index 7032277..0a101e8 100644 --- a/traf_authentication_config.html +++ b/traf_authentication_config.html @@ -1,7 +1,7 @@ <!DOCTYPE html> <!-- - Generated by Apache Maven Doxia at 2017-12-12 + Generated by Apache Maven Doxia at 2017-12-18 Rendered using Reflow Maven Skin 1.1.1 (http://andriusvelykis.github.io/reflow-maven-skin) --> <html xml:lang="en" lang="en">
