You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@impala.apache.org by tm...@apache.org on 2022/05/23 13:19:22 UTC

[impala] 01/04: IMPALA-11300: [DOCS] Fix Iceberg documentation links

This is an automated email from the ASF dual-hosted git repository.

tmater pushed a commit to branch branch-4.1.0
in repository https://gitbox.apache.org/repos/asf/impala.git

commit 0b175a871dd6418485d24bc72d8716fd6f57bc02
Author: Tamas Mate <tm...@apache.org>
AuthorDate: Wed May 18 13:52:23 2022 +0200

    IMPALA-11300: [DOCS] Fix Iceberg documentation links
    
    This commit updates the links that point to the Iceberg doc site.
    
    Testing:
     - Built the docs and checked the links.
    
    Change-Id: I6ee820d43ebaac2415f0256d34ccc6e0300aff0c
    Reviewed-on: http://gerrit.cloudera.org:8080/18539
    Tested-by: Impala Public Jenkins <im...@cloudera.com>
    Reviewed-by: Zoltan Borok-Nagy <bo...@cloudera.com>
---
 docs/topics/impala_iceberg.xml | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/docs/topics/impala_iceberg.xml b/docs/topics/impala_iceberg.xml
index 384503808..aa162b6ca 100644
--- a/docs/topics/impala_iceberg.xml
+++ b/docs/topics/impala_iceberg.xml
@@ -235,7 +235,7 @@ CREATE TABLE ice_ctas_part_spec PARTITIONED BY SPEC (truncate(3, s)) STORED AS I
 
       <p>
         You can get information about the supported Iceberg data tyeps in
-        <xref href="https://iceberg.apache.org/#spec/%23schemas-and-data-types" scope="external" format="html">
+        <xref href="https://iceberg.apache.org/docs/latest/schemas/" scope="external" format="html">
           the Iceberg spec</xref>.
       </p>
 
@@ -352,7 +352,7 @@ CREATE TABLE ice_ctas_part_spec PARTITIONED BY SPEC (truncate(3, s)) STORED AS I
       </p>
       <p>
         See
-        <xref href="https://iceberg.apache.org/#spec/%23schema-evolution" scope="external" format="html">
+        <xref href="https://iceberg.apache.org/docs/latest/evolution/#schema-evolution" scope="external" format="html">
         schema evolution </xref> for more details.
       </p>
     </conbody>
@@ -362,7 +362,7 @@ CREATE TABLE ice_ctas_part_spec PARTITIONED BY SPEC (truncate(3, s)) STORED AS I
     <title>Partitioning Iceberg tables</title>
     <conbody>
       <p>
-        <xref href="https://iceberg.apache.org/#spec/%23partitioning" scope="external" format="html">
+        <xref href="https://iceberg.apache.org/docs/latest/partitioning/" scope="external" format="html">
         The Iceberg spec </xref> has information about partitioning Iceberg tables. With Iceberg,
         we are not limited to value-based partitioning, we can also partition our tables via
         several partition transforms.
@@ -379,7 +379,7 @@ STORED AS ICEBERG;
       </p>
       <p>
         Iceberg also supports
-        <xref href="https://iceberg.apache.org/#spec/%23partition-evolution" scope="external" format="html">
+        <xref href="https://iceberg.apache.org/docs/latest/evolution/#partition-evolution" scope="external" format="html">
         partition evolution</xref> which means that the partitioning of a table can be changed, even
         without the need of rewriting existing data files. You can change an existing table's
         partitioning via an <codeph>ALTER TABLE SET PARTITION SPEC</codeph> statement, e.g.: