You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@iceberg.apache.org by bl...@apache.org on 2021/01/01 23:32:16 UTC

[iceberg] branch master updated: Spark: Fix Javadoc in IcebergSource (#2018)

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

blue 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 4f2c210  Spark: Fix Javadoc in IcebergSource (#2018)
4f2c210 is described below

commit 4f2c210d5a8b5b9c1e12a9a10ecb830a7c9d9e14
Author: Ryan Blue <bl...@apache.org>
AuthorDate: Fri Jan 1 15:32:06 2021 -0800

    Spark: Fix Javadoc in IcebergSource (#2018)
---
 .../java/org/apache/iceberg/spark/source/IcebergSource.java  | 12 ++++++------
 1 file changed, 6 insertions(+), 6 deletions(-)

diff --git a/spark3/src/main/java/org/apache/iceberg/spark/source/IcebergSource.java b/spark3/src/main/java/org/apache/iceberg/spark/source/IcebergSource.java
index 0bb48c3..a8a4267 100644
--- a/spark3/src/main/java/org/apache/iceberg/spark/source/IcebergSource.java
+++ b/spark3/src/main/java/org/apache/iceberg/spark/source/IcebergSource.java
@@ -43,12 +43,12 @@ import org.apache.spark.sql.util.CaseInsensitiveStringMap;
  *
  * How paths/tables are loaded when using spark.read().format("iceberg").path(table)
  *
- *  table = "file:/path/to/table" -> loads a HadoopTable at given path
- *  table = "tablename" -> loads currentCatalog.currentNamespace.tablename
- *  table = "catalog.tablename" -> load "tablename" from the specified catalog.
- *  table = "namespace.tablename" -> load "namespace.tablename" from current catalog
- *  table = "catalog.namespace.tablename" -> "namespace.tablename" from the specified catalog.
- *  table = "namespace1.namespace2.tablename" -> load "namespace1.namespace2.tablename" from current catalog
+ *  table = "file:/path/to/table" -&gt; loads a HadoopTable at given path
+ *  table = "tablename" -&gt; loads currentCatalog.currentNamespace.tablename
+ *  table = "catalog.tablename" -&gt; load "tablename" from the specified catalog.
+ *  table = "namespace.tablename" -&gt; load "namespace.tablename" from current catalog
+ *  table = "catalog.namespace.tablename" -&gt; "namespace.tablename" from the specified catalog.
+ *  table = "namespace1.namespace2.tablename" -&gt; load "namespace1.namespace2.tablename" from current catalog
  *
  * The above list is in order of priority. For example: a matching catalog will take priority over any namespace
  * resolution.