From 01c25d6afff703156c31c4f4c12138113dca494a Mon Sep 17 00:00:00 2001 From: Mathieu <49835526+wangxianghu@users.noreply.github.com> Date: Sun, 29 Dec 2019 09:57:19 +0800 Subject: [PATCH] [MINOR] Update the java doc of HoodieTableType (#1148) --- .../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 17c7fd24f..6c24e391b 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. *

- * Currently, 1 type is supported + * Currently, 2 types are supported. *

* COPY_ON_WRITE - Performs upserts by versioning entire files, with later versions containing newer value of a record. *

- * In the future, following might be added. - *

* MERGE_ON_READ - Speeds up upserts, by delaying merge until enough work piles up. *

+ * In the future, following might be added. + *

* SIMPLE_LSM - A simple 2 level LSM tree. */ public enum HoodieTableType {