We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 047ce73 commit f1079b3Copy full SHA for f1079b3
1 file changed
java/dingo-sdk/src/main/java/io/dingodb/sdk/common/utils/ErrorCodeUtils.java
@@ -37,6 +37,7 @@
37
import static io.dingodb.error.ErrorOuterClass.Errno.ESCHEMA_NOT_FOUND_VALUE;
38
import static io.dingodb.error.ErrorOuterClass.Errno.ETABLE_NOT_FOUND_VALUE;
39
import static io.dingodb.error.ErrorOuterClass.Errno.EVECTOR_INDEX_NOT_READY_VALUE;
40
+import static io.dingodb.sdk.service.entity.error.Errno.ERAFT_NOT_CONSISTENT_READ;
41
42
public final class ErrorCodeUtils {
43
@@ -69,7 +70,8 @@ public enum Strategy {
69
70
EREGION_STATE_VALUE,
71
EVECTOR_INDEX_NOT_READY_VALUE,
72
EREQUEST_FULL_VALUE,
- ELEASE_NOT_EXISTS_OR_EXPIRED_VALUE
73
+ ELEASE_NOT_EXISTS_OR_EXPIRED_VALUE,
74
+ ERAFT_NOT_CONSISTENT_READ
75
);
76
77
public static final List<Integer> ignoreCode = Arrays.asList(
0 commit comments