Repository: incubator-trafodion-site Updated Branches: refs/heads/asf-site 207d1c238 -> bf0aef532
http://git-wip-us.apache.org/repos/asf/incubator-trafodion-site/blob/bf0aef53/docs/sql_reference/dependencies.html ---------------------------------------------------------------------- diff --git a/docs/sql_reference/dependencies.html b/docs/sql_reference/dependencies.html index 95422ee..7abc3ee 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 20, 2017 --> +<!-- Generated by Apache Maven Doxia at Dec 23, 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="20171220" /> + <meta name="Date-Revision-yyyymmdd" content="20171223" /> <meta http-equiv="Content-Language" content="en" /> </head> @@ -27,7 +27,7 @@ <div class="xleft"> - <span id="publishDate">Last Published: 2017-12-20</span> + <span id="publishDate">Last Published: 2017-12-23</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/bf0aef53/docs/sql_reference/index.html ---------------------------------------------------------------------- diff --git a/docs/sql_reference/index.html b/docs/sql_reference/index.html index 9c2297e..a4e34f0 100644 --- a/docs/sql_reference/index.html +++ b/docs/sql_reference/index.html @@ -18067,33 +18067,61 @@ specify one or more of these options:</p> <li> <p><code>CONTINUE ON ERROR</code></p> <div class="paragraph"> -<p>LOAD statement will continue after errors encountered while scanning rows from source table.</p> +<p>LOAD statement will continue after ignorable errors while scanning rows from source table or loading into the target table. The ignorable errors are usually data conversion errors.</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> +<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.</p> </div> </li> <li> <p><code>LOG ERROR ROWS [TO <em>error-location-name</em>]</code></p> +<div class="ulist"> +<ul> +<li> +<p>Error rows</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> +<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. +<code><em>error-location-name</em></code> must be a HDFS directory name to which trafodion has write access.</p> </div> <div class="paragraph"> -<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> +<p>Error rows will be logged in HDFS files in the <strong>directory</strong> <code>/user/trafodion/bulkload/logs</code> if the error log location is not specified.</p> </div> -<div class="ulist"> -<ul> +<div class="paragraph"> +<p>The default name of the <strong>subdirectory</strong> is <code><em>ERR_catalog.schema.target_table_date_id</em></code>, where <code><em>id</em></code> is a numeric identifier timestamp (YYYYMMDD_HHMMSS) unique to the process where the error was seen.</p> +</div> +<div class="paragraph"> +<p>The default name of the <strong>error file</strong> is <code><em>loggingFileNamePrefix_catalog.schema.target_table_instanceID</em></code>, where <code><em>loggingFileNamePrefix</em></code> is hive_scan_err or traf_upsert_err depending on the data source table, and <code><em>instanceID</em></code> is the instance ID starting from 0, generally there is only one instance.</p> +</div> +<div class="paragraph"> +<p>For example, the full path of the table test_load_log is <code>/user/trafodion/bulkload/logs/test/ERR_TRAFODION.SEABASE.TEST_LOAD_LOG_20171218_035918/traf_upsert_err_TRAFODION.SEABASE.TEST_LOAD_LOG_0</code>,</p> +</div> +<div class="paragraph"> +<p>where:</p> +</div> +<div class="olist arabic"> +<ol class="arabic"> +<li> +<p><code>/user/trafodion/bulkload/logs/test</code> is the default name of <strong>directory</strong>.</p> +</li> +<li> +<p><code>ERR_TRAFODION.SEABASE.TEST_LOAD_LOG_20171218_035918</code> is the default name of <strong>subdirectory</strong>.</p> +</li> <li> -<p><code><em>error-location-name</em></code></p> +<p><code>traf_upsert_err_TRAFODION.SEABASE.TEST_LOAD_LOG_0</code> is the default name of <strong>error file</strong>.</p> +</li> +</ol> +</div> +</li> +<li> +<p>Error logs</p> +<div class="paragraph"> +<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.</p> +</div> <div class="paragraph"> -<p>must be a HDFS directory name to which trafodion has write access.</p> +<p>The actual log file location is displayed in the load command output. It is recommended that you use the same location for load as itâs easier to find the error logs.</p> </div> </li> </ul> http://git-wip-us.apache.org/repos/asf/incubator-trafodion-site/blob/bf0aef53/docs/sql_reference/integration.html ---------------------------------------------------------------------- diff --git a/docs/sql_reference/integration.html b/docs/sql_reference/integration.html index 8a1715f..2017ea3 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 20, 2017 --> +<!-- Generated by Apache Maven Doxia at Dec 23, 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="20171220" /> + <meta name="Date-Revision-yyyymmdd" content="20171223" /> <meta http-equiv="Content-Language" content="en" /> </head> @@ -27,7 +27,7 @@ <div class="xleft"> - <span id="publishDate">Last Published: 2017-12-20</span> + <span id="publishDate">Last Published: 2017-12-23</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/bf0aef53/docs/sql_reference/issue-tracking.html ---------------------------------------------------------------------- diff --git a/docs/sql_reference/issue-tracking.html b/docs/sql_reference/issue-tracking.html index 243299b..490bae0 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 20, 2017 --> +<!-- Generated by Apache Maven Doxia at Dec 23, 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="20171220" /> + <meta name="Date-Revision-yyyymmdd" content="20171223" /> <meta http-equiv="Content-Language" content="en" /> </head> @@ -27,7 +27,7 @@ <div class="xleft"> - <span id="publishDate">Last Published: 2017-12-20</span> + <span id="publishDate">Last Published: 2017-12-23</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/bf0aef53/docs/sql_reference/license.html ---------------------------------------------------------------------- diff --git a/docs/sql_reference/license.html b/docs/sql_reference/license.html index 92282ef..cd28204 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 20, 2017 --> +<!-- Generated by Apache Maven Doxia at Dec 23, 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="20171220" /> + <meta name="Date-Revision-yyyymmdd" content="20171223" /> <meta http-equiv="Content-Language" content="en" /> </head> @@ -27,7 +27,7 @@ <div class="xleft"> - <span id="publishDate">Last Published: 2017-12-20</span> + <span id="publishDate">Last Published: 2017-12-23</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/bf0aef53/docs/sql_reference/mail-lists.html ---------------------------------------------------------------------- diff --git a/docs/sql_reference/mail-lists.html b/docs/sql_reference/mail-lists.html index 759dab0..04c6b2c 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 20, 2017 --> +<!-- Generated by Apache Maven Doxia at Dec 23, 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="20171220" /> + <meta name="Date-Revision-yyyymmdd" content="20171223" /> <meta http-equiv="Content-Language" content="en" /> </head> @@ -27,7 +27,7 @@ <div class="xleft"> - <span id="publishDate">Last Published: 2017-12-20</span> + <span id="publishDate">Last Published: 2017-12-23</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/bf0aef53/docs/sql_reference/project-info.html ---------------------------------------------------------------------- diff --git a/docs/sql_reference/project-info.html b/docs/sql_reference/project-info.html index ba815a8..f3db837 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 20, 2017 --> +<!-- Generated by Apache Maven Doxia at Dec 23, 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="20171220" /> + <meta name="Date-Revision-yyyymmdd" content="20171223" /> <meta http-equiv="Content-Language" content="en" /> </head> @@ -27,7 +27,7 @@ <div class="xleft"> - <span id="publishDate">Last Published: 2017-12-20</span> + <span id="publishDate">Last Published: 2017-12-23</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/bf0aef53/docs/sql_reference/project-summary.html ---------------------------------------------------------------------- diff --git a/docs/sql_reference/project-summary.html b/docs/sql_reference/project-summary.html index a22ef10..078eda7 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 20, 2017 --> +<!-- Generated by Apache Maven Doxia at Dec 23, 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="20171220" /> + <meta name="Date-Revision-yyyymmdd" content="20171223" /> <meta http-equiv="Content-Language" content="en" /> </head> @@ -27,7 +27,7 @@ <div class="xleft"> - <span id="publishDate">Last Published: 2017-12-20</span> + <span id="publishDate">Last Published: 2017-12-23</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/bf0aef53/docs/sql_reference/source-repository.html ---------------------------------------------------------------------- diff --git a/docs/sql_reference/source-repository.html b/docs/sql_reference/source-repository.html index 05aa431..a507488 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 20, 2017 --> +<!-- Generated by Apache Maven Doxia at Dec 23, 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="20171220" /> + <meta name="Date-Revision-yyyymmdd" content="20171223" /> <meta http-equiv="Content-Language" content="en" /> </head> @@ -27,7 +27,7 @@ <div class="xleft"> - <span id="publishDate">Last Published: 2017-12-20</span> + <span id="publishDate">Last Published: 2017-12-23</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/bf0aef53/docs/sql_reference/team-list.html ---------------------------------------------------------------------- diff --git a/docs/sql_reference/team-list.html b/docs/sql_reference/team-list.html index 202f340..ce62678 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 20, 2017 --> +<!-- Generated by Apache Maven Doxia at Dec 23, 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="20171220" /> + <meta name="Date-Revision-yyyymmdd" content="20171223" /> <meta http-equiv="Content-Language" content="en" /> </head> @@ -27,7 +27,7 @@ <div class="xleft"> - <span id="publishDate">Last Published: 2017-12-20</span> + <span id="publishDate">Last Published: 2017-12-23</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/bf0aef53/index.html ---------------------------------------------------------------------- diff --git a/index.html b/index.html index 59e6492..ec4e403 100644 --- a/index.html +++ b/index.html @@ -1,7 +1,7 @@ <!DOCTYPE html> <!-- - Generated by Apache Maven Doxia at 2017-12-18 + 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/bf0aef53/integration.html ---------------------------------------------------------------------- diff --git a/integration.html b/integration.html index 553d77a..78f88d0 100644 --- a/integration.html +++ b/integration.html @@ -1,7 +1,7 @@ <!DOCTYPE html> <!-- - Generated by Apache Maven Doxia at 2017-12-20 + Generated by Apache Maven Doxia at 2017-12-23 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/bf0aef53/issue-tracking.html ---------------------------------------------------------------------- diff --git a/issue-tracking.html b/issue-tracking.html index 1acd758..15c8c48 100644 --- a/issue-tracking.html +++ b/issue-tracking.html @@ -1,7 +1,7 @@ <!DOCTYPE html> <!-- - Generated by Apache Maven Doxia at 2017-12-20 + Generated by Apache Maven Doxia at 2017-12-23 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/bf0aef53/license.html ---------------------------------------------------------------------- diff --git a/license.html b/license.html index 16da46f..5ea4c80 100644 --- a/license.html +++ b/license.html @@ -1,7 +1,7 @@ <!DOCTYPE html> <!-- - Generated by Apache Maven Doxia at 2017-12-20 + Generated by Apache Maven Doxia at 2017-12-23 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/bf0aef53/mail-lists.html ---------------------------------------------------------------------- diff --git a/mail-lists.html b/mail-lists.html index 81f933e..f4025fd 100644 --- a/mail-lists.html +++ b/mail-lists.html @@ -1,7 +1,7 @@ <!DOCTYPE html> <!-- - Generated by Apache Maven Doxia at 2017-12-20 + Generated by Apache Maven Doxia at 2017-12-23 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/bf0aef53/modules.html ---------------------------------------------------------------------- diff --git a/modules.html b/modules.html index f7023ac..baa1272 100644 --- a/modules.html +++ b/modules.html @@ -1,7 +1,7 @@ <!DOCTYPE html> <!-- - Generated by Apache Maven Doxia at 2017-12-20 + Generated by Apache Maven Doxia at 2017-12-23 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/bf0aef53/project-info.html ---------------------------------------------------------------------- diff --git a/project-info.html b/project-info.html index 487a16c..c5c07d0 100644 --- a/project-info.html +++ b/project-info.html @@ -1,7 +1,7 @@ <!DOCTYPE html> <!-- - Generated by Apache Maven Doxia at 2017-12-20 + Generated by Apache Maven Doxia at 2017-12-23 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/bf0aef53/project-summary.html ---------------------------------------------------------------------- diff --git a/project-summary.html b/project-summary.html index f8aa573..47f6404 100644 --- a/project-summary.html +++ b/project-summary.html @@ -1,7 +1,7 @@ <!DOCTYPE html> <!-- - Generated by Apache Maven Doxia at 2017-12-20 + Generated by Apache Maven Doxia at 2017-12-23 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/bf0aef53/source-repository.html ---------------------------------------------------------------------- diff --git a/source-repository.html b/source-repository.html index c88a380..50a2636 100644 --- a/source-repository.html +++ b/source-repository.html @@ -1,7 +1,7 @@ <!DOCTYPE html> <!-- - Generated by Apache Maven Doxia at 2017-12-20 + Generated by Apache Maven Doxia at 2017-12-23 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/bf0aef53/team-list.html ---------------------------------------------------------------------- diff --git a/team-list.html b/team-list.html index 700797f..ed3c0dd 100644 --- a/team-list.html +++ b/team-list.html @@ -1,7 +1,7 @@ <!DOCTYPE html> <!-- - Generated by Apache Maven Doxia at 2017-12-20 + Generated by Apache Maven Doxia at 2017-12-23 Rendered using Reflow Maven Skin 1.1.1 (http://andriusvelykis.github.io/reflow-maven-skin) --> <html xml:lang="en" lang="en">
