You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@iceberg.apache.org by ry...@apache.org on 2021/04/01 11:20:18 UTC

[iceberg] branch master updated: Use tag rather than as is deprecated (#2406)

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

rymurr pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/iceberg.git


The following commit(s) were added to refs/heads/master by this push:
     new e68889e  Use <code> tag rather than <tt> as <tt> is deprecated (#2406)
e68889e is described below

commit e68889e5583b0b533c6cd1e97079af7a3b6426d6
Author: dixingxing <di...@yeah.net>
AuthorDate: Thu Apr 1 19:20:06 2021 +0800

    Use <code> tag rather than <tt> as <tt> is deprecated (#2406)
    
    Co-authored-by: dixingxing <di...@autohome.com.cn>
---
 .../java/org/apache/iceberg/flink/FlinkCatalogFactory.java | 14 +++++++-------
 .../main/java/org/apache/iceberg/spark/SparkCatalog.java   |  8 ++++----
 2 files changed, 11 insertions(+), 11 deletions(-)

diff --git a/flink/src/main/java/org/apache/iceberg/flink/FlinkCatalogFactory.java b/flink/src/main/java/org/apache/iceberg/flink/FlinkCatalogFactory.java
index b129d0b..406c979 100644
--- a/flink/src/main/java/org/apache/iceberg/flink/FlinkCatalogFactory.java
+++ b/flink/src/main/java/org/apache/iceberg/flink/FlinkCatalogFactory.java
@@ -44,13 +44,13 @@ import org.apache.iceberg.relocated.com.google.common.collect.Maps;
  * <p>
  * This supports the following catalog configuration options:
  * <ul>
- *   <li><tt>type</tt> - Flink catalog factory key, should be "iceberg"</li>
- *   <li><tt>catalog-type</tt> - iceberg catalog type, "hive" or "hadoop"</li>
- *   <li><tt>uri</tt> - the Hive Metastore URI (Hive catalog only)</li>
- *   <li><tt>clients</tt> - the Hive Client Pool Size (Hive catalog only)</li>
- *   <li><tt>warehouse</tt> - the warehouse path (Hadoop catalog only)</li>
- *   <li><tt>default-database</tt> - a database name to use as the default</li>
- *   <li><tt>base-namespace</tt> - a base namespace as the prefix for all databases (Hadoop catalog only)</li>
+ *   <li><code>type</code> - Flink catalog factory key, should be "iceberg"</li>
+ *   <li><code>catalog-type</code> - iceberg catalog type, "hive" or "hadoop"</li>
+ *   <li><code>uri</code> - the Hive Metastore URI (Hive catalog only)</li>
+ *   <li><code>clients</code> - the Hive Client Pool Size (Hive catalog only)</li>
+ *   <li><code>warehouse</code> - the warehouse path (Hadoop catalog only)</li>
+ *   <li><code>default-database</code> - a database name to use as the default</li>
+ *   <li><code>base-namespace</code> - a base namespace as the prefix for all databases (Hadoop catalog only)</li>
  * </ul>
  * <p>
  * To use a custom catalog that is not a Hive or Hadoop catalog, extend this class and override
diff --git a/spark3/src/main/java/org/apache/iceberg/spark/SparkCatalog.java b/spark3/src/main/java/org/apache/iceberg/spark/SparkCatalog.java
index 32a3d6d..62dc551 100644
--- a/spark3/src/main/java/org/apache/iceberg/spark/SparkCatalog.java
+++ b/spark3/src/main/java/org/apache/iceberg/spark/SparkCatalog.java
@@ -67,10 +67,10 @@ import org.apache.spark.sql.util.CaseInsensitiveStringMap;
  * <p>
  * This supports the following catalog configuration options:
  * <ul>
- *   <li><tt>type</tt> - catalog type, "hive" or "hadoop"</li>
- *   <li><tt>uri</tt> - the Hive Metastore URI (Hive catalog only)</li>
- *   <li><tt>warehouse</tt> - the warehouse path (Hadoop catalog only)</li>
- *   <li><tt>default-namespace</tt> - a namespace to use as the default</li>
+ *   <li><code>type</code> - catalog type, "hive" or "hadoop"</li>
+ *   <li><code>uri</code> - the Hive Metastore URI (Hive catalog only)</li>
+ *   <li><code>warehouse</code> - the warehouse path (Hadoop catalog only)</li>
+ *   <li><code>default-namespace</code> - a namespace to use as the default</li>
  * </ul>
  * <p>
  * To use a custom catalog that is not a Hive or Hadoop catalog, extend this class and override