You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@phoenix.apache.org by ma...@apache.org on 2015/06/15 20:45:43 UTC

[03/50] [abbrv] phoenix git commit: PHOENIX-1930 [BW COMPAT] Queries hangs with client on Phoenix 4.3.0 and server on 4.x-HBase-0.98

PHOENIX-1930 [BW COMPAT] Queries hangs with client on Phoenix 4.3.0 and server on 4.x-HBase-0.98


Project: http://git-wip-us.apache.org/repos/asf/phoenix/repo
Commit: http://git-wip-us.apache.org/repos/asf/phoenix/commit/d2c1f2c0
Tree: http://git-wip-us.apache.org/repos/asf/phoenix/tree/d2c1f2c0
Diff: http://git-wip-us.apache.org/repos/asf/phoenix/diff/d2c1f2c0

Branch: refs/heads/calcite
Commit: d2c1f2c0a6a0994da296b20158697fa725f1b4a7
Parents: 902cf0d
Author: Thomas <td...@salesforce.com>
Authored: Wed Apr 29 15:44:13 2015 -0700
Committer: Thomas <td...@salesforce.com>
Committed: Wed Apr 29 16:36:04 2015 -0700

----------------------------------------------------------------------
 .../main/java/org/apache/phoenix/expression/ExpressionType.java  | 4 ++++
 1 file changed, 4 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/phoenix/blob/d2c1f2c0/phoenix-core/src/main/java/org/apache/phoenix/expression/ExpressionType.java
----------------------------------------------------------------------
diff --git a/phoenix-core/src/main/java/org/apache/phoenix/expression/ExpressionType.java b/phoenix-core/src/main/java/org/apache/phoenix/expression/ExpressionType.java
index 843a768..71f0521 100644
--- a/phoenix-core/src/main/java/org/apache/phoenix/expression/ExpressionType.java
+++ b/phoenix-core/src/main/java/org/apache/phoenix/expression/ExpressionType.java
@@ -214,6 +214,10 @@ public enum ExpressionType {
     ByteBasedRegexpReplaceFunction(ByteBasedRegexpReplaceFunction.class),
     ByteBasedRegexpSubstrFunction(ByteBasedRegexpSubstrFunction.class),
     ByteBasedRegexpSplitFunction(ByteBasedRegexpSplitFunction.class),
+    LikeExpression(LikeExpression.class),
+    RegexpReplaceFunction(RegexpReplaceFunction.class),
+    RegexpSubstrFunction(RegexpSubstrFunction.class),
+    RegexpSplitFunction(RegexpSplitFunction.class),
     SignFunction(SignFunction.class),
     YearFunction(YearFunction.class),
     MonthFunction(MonthFunction.class),