Repository: phoenix Updated Branches: refs/heads/master 86fe2fc5d -> f88f62abc
PHOENIX-3955 (Addendum) Fix compilation error Project: http://git-wip-us.apache.org/repos/asf/phoenix/repo Commit: http://git-wip-us.apache.org/repos/asf/phoenix/commit/f88f62ab Tree: http://git-wip-us.apache.org/repos/asf/phoenix/tree/f88f62ab Diff: http://git-wip-us.apache.org/repos/asf/phoenix/diff/f88f62ab Branch: refs/heads/master Commit: f88f62abccb0b313f61b647178d71300cc0105aa Parents: 86fe2fc Author: Chinmay Kulkarni <[email protected]> Authored: Wed Oct 10 22:59:34 2018 -0700 Committer: Thomas D'Silva <[email protected]> Committed: Thu Oct 11 14:24:52 2018 -0700 ---------------------------------------------------------------------- .../main/java/org/apache/phoenix/exception/SQLExceptionCode.java | 1 + 1 file changed, 1 insertion(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/phoenix/blob/f88f62ab/phoenix-core/src/main/java/org/apache/phoenix/exception/SQLExceptionCode.java ---------------------------------------------------------------------- diff --git a/phoenix-core/src/main/java/org/apache/phoenix/exception/SQLExceptionCode.java b/phoenix-core/src/main/java/org/apache/phoenix/exception/SQLExceptionCode.java index 8cb9247..26a1e26 100644 --- a/phoenix-core/src/main/java/org/apache/phoenix/exception/SQLExceptionCode.java +++ b/phoenix-core/src/main/java/org/apache/phoenix/exception/SQLExceptionCode.java @@ -306,6 +306,7 @@ public enum SQLExceptionCode { TTL_UNSUPPORTED_FOR_TXN_TABLE(10947, "44A28", "TTL is not supported for"), CANNOT_CREATE_LOCAL_INDEX_FOR_TXN_TABLE(10948, "44A29", "Local indexes cannot be created for"), CANNOT_SET_OR_ALTER_PROPERTY_FOR_INDEX(10949, "44A30", "Cannot set or alter the following properties on an index: " + + MetaDataUtil.SYNCED_DATA_TABLE_AND_INDEX_PROPERTIES.toString()), /** Sequence related */ SEQUENCE_ALREADY_EXIST(1200, "42Z00", "Sequence already exists.", new Factory() {
