You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hudi.apache.org by vi...@apache.org on 2019/12/29 01:57:30 UTC

[incubator-hudi] branch master updated: [MINOR] Update the java doc of HoodieTableType (#1148)

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

vinoyang pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-hudi.git


The following commit(s) were added to refs/heads/master by this push:
     new 01c25d6  [MINOR] Update the java doc of HoodieTableType (#1148)
01c25d6 is described below

commit 01c25d6afff703156c31c4f4c12138113dca494a
Author: Mathieu <49...@users.noreply.github.com>
AuthorDate: Sun Dec 29 09:57:19 2019 +0800

    [MINOR] Update the java doc of HoodieTableType (#1148)
---
 .../src/main/java/org/apache/hudi/common/model/HoodieTableType.java | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/hudi-common/src/main/java/org/apache/hudi/common/model/HoodieTableType.java b/hudi-common/src/main/java/org/apache/hudi/common/model/HoodieTableType.java
index 17c7fd2..6c24e39 100644
--- a/hudi-common/src/main/java/org/apache/hudi/common/model/HoodieTableType.java
+++ b/hudi-common/src/main/java/org/apache/hudi/common/model/HoodieTableType.java
@@ -21,14 +21,14 @@ package org.apache.hudi.common.model;
 /**
  * Type of the Hoodie Table.
  * <p>
- * Currently, 1 type is supported
+ * Currently, 2 types are supported.
  * <p>
  * COPY_ON_WRITE - Performs upserts by versioning entire files, with later versions containing newer value of a record.
  * <p>
- * In the future, following might be added.
- * <p>
  * MERGE_ON_READ - Speeds up upserts, by delaying merge until enough work piles up.
  * <p>
+ * In the future, following might be added.
+ * <p>
  * SIMPLE_LSM - A simple 2 level LSM tree.
  */
 public enum HoodieTableType {