1
0

[HUDI-3619] Fix HoodieOperation fromValue using wrong constant value (#5033)

Co-authored-by: root <l-shen@localhost.localdomain>
This commit is contained in:
l-shen
2022-03-15 20:34:31 +08:00
committed by GitHub
parent 6ed7106e59
commit 9bdda2a312

View File

@@ -40,7 +40,7 @@ public enum HoodieOperation {
/** /**
* Delete operation. * Delete operation.
*/ */
DELETE("D", (byte) 4); DELETE("D", (byte) 3);
private final String name; private final String name;
private final byte value; private final byte value;